I use this method to retrieve the altitude using longitude and latitude coordinates
private double getAltitude(int long, int lat) {
Double longitude=Double.valueOf((double)(long/1e6));
Double latitude=Double.valueOf((double)(lat/1e6));
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;
}
This use the webservice http://gisdata.usgs.gov/xmlwebservices2/elevation_service.asmx
The passed coordinates are the int obtained from google map
int long=(int)(map.getLong()*1e6);
int lat=(int)(map.getLatitude()*1e6);
Something goes wrong with the format of parameters because using this method I get totally wrong altitude or negative values as -1,8398598E4..
I have tested with coordinates of a place in France
44.783333 lat 10.516667 long