use doubles instead of floats for better accuracy of lat and lot
This commit is contained in:
parent
5d826a7938
commit
1937163942
1 changed files with 6 additions and 6 deletions
|
@ -341,15 +341,15 @@
|
|||
<!-- Position -->
|
||||
<chunk>
|
||||
<name>latitude-deg</name>
|
||||
<type>float</type>
|
||||
<format>%f</format>
|
||||
<type>double</type>
|
||||
<format>%.10lf</format>
|
||||
<node>/position/latitude-deg</node>
|
||||
</chunk>
|
||||
|
||||
<chunk>
|
||||
<name>longitude-deg</name>
|
||||
<type>float</type>
|
||||
<format>%f</format>
|
||||
<type>double</type>
|
||||
<format>%.10lf</format>
|
||||
<node>/position/longitude-deg</node>
|
||||
</chunk>
|
||||
|
||||
|
@ -837,13 +837,13 @@
|
|||
<!-- Position -->
|
||||
<chunk>
|
||||
<name>latitude-deg</name>
|
||||
<type>float</type>
|
||||
<type>double</type>
|
||||
<node>/position/latitude-deg</node>
|
||||
</chunk>
|
||||
|
||||
<chunk>
|
||||
<name>longitude-deg</name>
|
||||
<type>float</type>
|
||||
<type>double</type>
|
||||
<node>/position/longitude-deg</node>
|
||||
</chunk>
|
||||
|
||||
|
|
Loading…
Reference in a new issue