Home | History | Annotate | Download | only in gnss

Lines Matching refs:gpsLocation

1542             mApi.getBestAvailableZppFix(location.gpsLocation, techMask);
1544 location.gpsLocation.flags |= LOCATION_HAS_SOURCE_INFO;
1824 !((ulpLocation.gpsLocation.flags &
1827 (ulpLocation.gpsLocation.accuracy >
1836 convertLocation(location, ulpLocation.gpsLocation, techMask);
2260 time_t utcTime(ulpLocation.gpsLocation.timestamp/1000);
2540 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_BEARING)
2542 float magTrack = ulpLocation.gpsLocation.bearing;
2545 float magTrack = ulpLocation.gpsLocation.bearing - locationExtended.magneticDeviation;
2553 svMeta.talker, ulpLocation.gpsLocation.bearing, magTrack);
2568 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_SPEED)
2570 float speedKnots = ulpLocation.gpsLocation.speed * (3600.0/1852.0);
2571 float speedKmPerHour = ulpLocation.gpsLocation.speed * 3.6;
2588 if (!(ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_LAT_LONG))
2616 int utcMSeconds = (ulpLocation.gpsLocation.timestamp)%1000;
2632 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_LAT_LONG) {
2633 double latitude = ulpLocation.gpsLocation.latitude;
2634 double longitude = ulpLocation.gpsLocation.longitude;
2671 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_SPEED) {
2672 float speedKnots = ulpLocation.gpsLocation.speed * (3600.0/1852.0);
2685 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_BEARING) {
2686 length = snprintf(pMarker, lengthRemaining, "%.1lf,", ulpLocation.gpsLocation.bearing);
2731 if (!(ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_LAT_LONG)) {
2760 int utcMSeconds = (ulpLocation.gpsLocation.timestamp)%1000;
2776 if (ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_LAT_LONG) {
2777 double latitude = ulpLocation.gpsLocation.latitude;
2778 double longitude = ulpLocation.gpsLocation.longitude;
2816 if (!(ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_LAT_LONG)) {
2859 if ((ulpLocation.gpsLocation.flags & LOC_GPS_LOCATION_HAS_ALTITUDE) &&
2862 ulpLocation.gpsLocation.altitude - locationExtended.altitudeMeanSeaLevel);