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

Updating DOP value range for GPS notification #103

Open KhrystynaDubovyk opened 6 years ago

KhrystynaDubovyk commented 6 years ago

GetVehicleData, OnVehicleData

Description:

Current range for vdop/hdop/pdop values is 0-10. GPS sensor can provide DOP values way more than that. This causes SDL to ignore GPS data with DOP values more than 10 even if the GPS switches to Dead Reckoning based solution. Since the range of DOP is determined by actual sensor itself, we should not limit it as SDL/Proxy side.

Detailed description:

To increase the maxvalue for vdop, pdop and hdop parameters to 1000 from 10 in GetVehicleData response and onVehicleData notification.

    <param name="pdop" type="Float" minvalue="0" maxvalue="1000" mandatory="false">
        <description>PDOP.</description>
    </param>
    <param name="hdop" type="Float" minvalue="0" maxvalue="1000" mandatory="false" >
        <description>HDOP.</description>
    </param>
    <param name="vdop" type="Float" minvalue="0" maxvalue="1000" mandatory="false" >
        <description>VDOP.</description>
    </param>

Diagram:

N/A

Links: