| Author |
what is the differnet latitudeE6 and latitude
|
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 643
|
|
I need to know what is the
1) what is the different latitudeE6 and latitude ?
2) what is the different longitudeE6 and longitude ?
|
 |
Michal Krawczyk
Greenhorn
Joined: Oct 15, 2011
Posts: 3
|
|
Hi!
the difference is simple. Latitude/Longitude is double number like 57.126847, LatitudeE6/LongitudeE6 is integer value of Latitude/Longitude multiplied by 1.000.000. When you use GeoPoint you have to give integer parameters (LatitudeE6,LongitudeE6) and then you can't give Latitude/Longitude as a double, so you have to miltiply it by 1.000.000. When you use Location it need double values of Latitude/Longtitude.
I hope you understand what I mean ;) If you have another questions - write! ;)
|
 |
Oneil dilises
Greenhorn
Joined: Oct 17, 2011
Posts: 1
|
|
You can try it this way:-
int latE6 = (int) (lat * 1e6);
int lonE6 = (int) (lon * 1e6);
Transmission rebuild
|
 |
 |
|
|
subject: what is the differnet latitudeE6 and latitude
|
|
|