Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating DOP value range for GPS notification #103

Open
KhrystynaDubovyk opened this issue Jul 26, 2018 · 0 comments
Open

Updating DOP value range for GPS notification #103

KhrystynaDubovyk opened this issue Jul 26, 2018 · 0 comments

Comments

@KhrystynaDubovyk
Copy link
Contributor

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:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant