HI
I tried to implement a simple GPS tracker. Therefore is used
lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, this);
Then i used the
public void onLocationChanged(Location location) {
method to read the altitude of my current location.
But i dont really know what Location.getAltitude() returns. The document says it returns the altitude. But is this in meters? or feets? if i put the phone on the desk next to me, this value changes between 500 and -500??
How does this really work???