Searched refs:locationValues (Results 1 – 1 of 1) sorted by relevance
/hardware/interfaces/gnss/common/utils/default/ |
D | FixLocationParser.cpp | 43 std::vector<std::string> locationValues; in getLocationFromInputStr() local 44 ParseUtils::splitStr(locationStrRecords[0], COMMA_SEPARATOR, locationValues); in getLocationFromInputStr() 45 if (locationValues.size() < 12) { in getLocationFromInputStr() 58 .latitudeDegrees = ParseUtils::tryParseDouble(locationValues[2], 0), in getLocationFromInputStr() 59 .longitudeDegrees = ParseUtils::tryParseDouble(locationValues[3], 0), in getLocationFromInputStr() 60 .altitudeMeters = ParseUtils::tryParseDouble(locationValues[4], 0), in getLocationFromInputStr() 61 .speedMetersPerSec = ParseUtils::tryParseDouble(locationValues[5], 0), in getLocationFromInputStr() 62 .bearingDegrees = ParseUtils::tryParseDouble(locationValues[7], 0), in getLocationFromInputStr() 63 .horizontalAccuracyMeters = ParseUtils::tryParseDouble(locationValues[6], 0), in getLocationFromInputStr() 64 .verticalAccuracyMeters = ParseUtils::tryParseDouble(locationValues[6], 0), in getLocationFromInputStr() [all …]
|