Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


Do you know some quick and sufficient way to get altitude (elevation) by longitude and latitude, that would be easy to use on Android platform?

While this is a self-learning question, my approach is still time-consuming ('coz it's web-service etc), so I would like to receive any alternatives or possible improvement suggestions!

Thank you!

share|improve this question

5 Answers

up vote 22 down vote accepted

elevation app screen

My approach is to use USGS Elevation Query Web Service:

private double getAltitude(Double longitude, Double latitude) {
    double result = Double.NaN;
    HttpClient httpClient = new DefaultHttpClient();
    HttpContext localContext = new BasicHttpContext();
    String url = "http://gisdata.usgs.gov/"
            + "xmlwebservices2/elevation_service.asmx/"
            + "getElevation?X_Value=" + String.valueOf(longitude)
            + "&Y_Value=" + String.valueOf(latitude)
            + "&Elevation_Units=METERS&Source_Layer=-1&Elevation_Only=true";
    HttpGet httpGet = new HttpGet(url);
    try {
        HttpResponse response = httpClient.execute(httpGet, localContext);
        HttpEntity entity = response.getEntity();
        if (entity != null) {
            InputStream instream = entity.getContent();
            int r = -1;
            StringBuffer respStr = new StringBuffer();
            while ((r = instream.read()) != -1)
                respStr.append((char) r);
            String tagOpen = "<double>";
            String tagClose = "</double>";
            if (respStr.indexOf(tagOpen) != -1) {
                int start = respStr.indexOf(tagOpen) + tagOpen.length();
                int end = respStr.indexOf(tagClose);
                String value = respStr.substring(start, end);
                result = Double.parseDouble(value);
            }
            instream.close();
        }
    } catch (ClientProtocolException e) {} 
    catch (IOException e) {}
    return result;
}

And example of use (right in HelloMapView class):

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        linearLayout = (LinearLayout) findViewById(R.id.zoomview);
        mapView = (MapView) findViewById(R.id.mapview);
        mZoom = (ZoomControls) mapView.getZoomControls();
        linearLayout.addView(mZoom);
        mapView.setOnTouchListener(new OnTouchListener() {
            public boolean onTouch(View v, MotionEvent event) {
                if (event.getAction() == 1) {
                    final GeoPoint p = mapView.getProjection().fromPixels(
                            (int) event.getX(), (int) event.getY());
                    final StringBuilder msg = new StringBuilder();
                    new Thread(new Runnable() {
                        public void run() {
                            final double lon = p.getLongitudeE6() / 1E6;
                            final double lat = p.getLatitudeE6() / 1E6;
                            final double alt = getAltitude(lon, lat);
                            msg.append("Lon: ");
                            msg.append(lon);
                            msg.append(" Lat: ");
                            msg.append(lat);
                            msg.append(" Alt: ");
                            msg.append(alt);
                        }
                    }).run();
                    Toast.makeText(getBaseContext(), msg, Toast.LENGTH_SHORT)
                            .show();
                }
                return false;
            }
        });
    }
share|improve this answer
As somewhat GIS interested I find this very interesting – JaanusSiim Jan 3 '10 at 19:58
4  
To amplify on this: the reason you need to do something like that (use a service on the network) is twofold: one, the GPS isn't very good at altitude, vertical errors are around 150 ft at times, and two, any reasonably high-resolution world elevation model is enormous, much too big to install on the phone. If you were doing this on your own server as part of a web app or GIS, you could instead download the elevation model (from NASA) and query it directly; faster, but uses a lot of storage. – Andrew McGregor Jan 3 '10 at 20:48
Andrew thanks for you feedback, it's great! – Max Gontar Jan 4 '10 at 6:49
1  
To clarify, this actually grabs the elevation and NOT the altitude of a lat/long point. – Austyn Mahoney Aug 19 '10 at 16:52
1  
The USGS service apparently only works with US coordinates. – scotts Jan 5 '11 at 18:00
show 2 more comments

You can also use the Google Elevation API. The online documentation for it is located at: https://developers.google.com/maps/documentation/elevation/

Please note the following from the above API page:

Usage Limits: Use of the Google Geocoding API is subject to a query limit of 2,500 geolocation requests per day. (User of Google Maps API Premier may perform up to 100,000 requests per day.) This limit is enforced to prevent abuse and/or repurposing of the Geocoding API, and this limit may be changed in the future without notice. Additionally, we enforce a request rate limit to prevent abuse of the service. If you exceed the 24-hour limit or otherwise abuse the service, the Geocoding API may stop working for you temporarily. If you continue to exceed this limit, your access to the Geocoding API may be blocked. Note: the Geocoding API may only be used in conjunction with a Google map; geocoding results without displaying them on a map is prohibited. For complete details on allowed usage, consult the Maps API Terms of Service License Restrictions.

Altering Max Gontar's code above for the Google API gives the following, with the returned elevation given in feet:

private double getElevationFromGoogleMaps(double longitude, double latitude) {
        double result = Double.NaN;
        HttpClient httpClient = new DefaultHttpClient();
        HttpContext localContext = new BasicHttpContext();
        String url = "http://maps.googleapis.com/maps/api/elevation/"
                + "xml?locations=" + String.valueOf(latitude)
                + "," + String.valueOf(longitude)
                + "&sensor=true";
        HttpGet httpGet = new HttpGet(url);
        try {
            HttpResponse response = httpClient.execute(httpGet, localContext);
            HttpEntity entity = response.getEntity();
            if (entity != null) {
                InputStream instream = entity.getContent();
                int r = -1;
                StringBuffer respStr = new StringBuffer();
                while ((r = instream.read()) != -1)
                    respStr.append((char) r);
                String tagOpen = "<elevation>";
                String tagClose = "</elevation>";
                if (respStr.indexOf(tagOpen) != -1) {
                    int start = respStr.indexOf(tagOpen) + tagOpen.length();
                    int end = respStr.indexOf(tagClose);
                    String value = respStr.substring(start, end);
                    result = (double)(Double.parseDouble(value)*3.2808399); // convert from meters to feet
                }
                instream.close();
            }
        } catch (ClientProtocolException e) {} 
        catch (IOException e) {}

        return result;
    }
share|improve this answer

If u are using android device which has GPS Recever then there is a method getAltitude() by using that u can get the altitude by elevation.

share|improve this answer

I am amazed. I always thought that the GPS measures all 3 dimensions with roughly the same accuracy. The same goes for the old transit satellite navigation system as well. And besides, getAltitude( ) only gives you the 'altitude' of the ground surface, not the receiver, I guess. While typing this, I am asking myself, what 'altitude' does the GPS really calculate? Isn't it the altitude relative to a reference ellipsoid? I guess the receiver just has a simple model of the shape of the earth, a smooth 'ellipsoid', or does it really know about the major wrinkles of the earth?

share|improve this answer
Any gps coordinate is found by lining it up with distance from a few satellites (with particular accuracy). Since the satellites are much closer vertically than horizontal, it's difficult to get an accurate read. getAltitude seems like the best option - unless the reported altitude is far away from original altitude report (maybe the receiver is in an airplane or on a bridge). – BankStrong Apr 7 '10 at 15:08
To get decent, accurate altitude information, a GPS receiver with WAAS is required. – Brian Knoblauch May 25 '10 at 18:30
I always got fairly good altitudes with my old Garmin eTrex Venture. With the barometric eTrex models, the results are very good. I can't say a thing about mobile phones and other non-dedicated GPS devices, but they seem to work pretty well, either. – heltonbiker Aug 26 '11 at 2:41
It depends on the datum you select in your GPS. The default is your height above WGS84, which is an average ellipsoid for the whole earth (no wrinkles). If you choose a local coordinate system then it does a simple Helmurt transformation to a local ellipsoid. Eg in the UK, set the GPS to 'Ordnance Survey', and you get height above the Airy Spheroid, which is a better fit to the UK than WGS84. Better... but not wrinkled! If you want your height above the 'geoid' (a wrinkly approximation to where sea level would be), it's more complicated (eg google OSGM02) and you won't find it on a GPS. – Teasel Sep 27 '12 at 14:07

Regarding getElevationFromGoogleMap, the URL should be latitude,longitude not longitude,latitude...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.