smartdevicelink / sdl_requirements

Collection of requirements/technical tasks for new sdl_core features
BSD 3-Clause "New" or "Revised" License
2 stars 7 forks source link

[GPSData] - Adding GPS Shift support #110

Open KhrystynaDubovyk opened 5 years ago

KhrystynaDubovyk commented 5 years ago

GPSData

Description:

China region needs GPS data to be corrected using proprietary algorithm to bridge the gap between different standards used.

Detailed description:

API changes introduce "shifted" flag for GPS data which defines whether the GPS data (latitude, longitude, attitude, timestamp) raw or already adjusted.

HMI_API

   <param name="shifted" type="Boolean" mandatory="false">
       <description>
           True, if GPS lat/long, time, and altitude have been purposefully shifted (requires a proprietary algorithm to unshift).
           False, if the GPS data is raw and un-shifted.
           If not provided, then value is assumed False.
       </description>
   </param>

MOBILE_API

        <param name="shifted" type="Boolean" mandatory="false" since="5.0">
            <description>
                True, if GPS lat/long, time, and altitude have been purposefully shifted (requires a proprietary algorithm to unshift).
                False, if the GPS data is raw and un-shifted.
                If not provided, then value is assumed False.
            </description>
        </param>

Links: