Androidプラットフォームで経度と緯度で高度(標高)を取得するための迅速かつ効率的な方法はありますか?
標高アプリ画面http://img509.imageshack.us/img509/4848/elevationc.jpg
私のアプローチは、 SGS 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;
}
そして、使用例( HelloMapView クラス内):
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;
}
});
}
Google Elevation APIを使用することもできます。オンラインドキュメントは次の場所にあります。 https://developers.google.com/maps/documentation/elevation/
上記のAPIページの次の点に注意してください。
使用制限:Google Geocoding APIの使用には、1日あたり2,500件の位置情報リクエストのクエリ制限が適用されます。 (Google Maps API Premierのユーザーは、1日に最大100,000件のリクエストを実行できます。)この制限は、Geocoding APIの悪用および/または転用を防ぐために実施され、この制限は将来予告なしに変更される場合があります。さらに、サービスの不正使用を防ぐためにリクエストレート制限を実施しています。 24時間の制限を超えるか、サービスを悪用すると、Geocoding APIが一時的に機能しなくなる場合があります。引き続きこの制限を超えると、Geocoding APIへのアクセスがブロックされる場合があります。注:Geocoding APIは、Googleマップと組み合わせてのみ使用できます。結果を地図に表示せずにジオコーディングすることは禁止されています。許可された使用法の詳細については、Maps API利用規約のライセンス制限をご覧ください。
Max Gontar's 上記のGoogle APIのコードを変更すると、フィート単位で返される標高を使用して以下が得られます。
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;
}
最初に高度と標高を区別することが重要です。
高度は、ポイントからローカルサーフェスまでの距離です。それが土地であろうと水であろうと。この測定は、主に航空に使用されます。
高度は Location.getAltitude() 関数を使用して取得できます。
標高は、ローカルサーフェスから海面までの距離です。はるかに頻繁に使用され、しばしば誤って高度と呼ばれます。
とはいえ、USGSはUSに対して 新しいHTTP POSTおよびGETクエリ を提供します。これは、フィートまたはメートル単位の標高のXMLまたはJSON値を返すことができます。世界的な標高では、 Google Elevation API を使用できます。
UがAndroid GPSレシーバーを搭載したデバイスを使用している場合は、getAltitude()があります。
私が作成したこの1つを試してください: https://algorithmia.com/algorithms/Gaploid/Elevation
javaの例を次に示します。
import com.algorithmia.*;
import com.algorithmia.algo.*;
String input = "{\"lat\": \"50.2111\", \"lon\": \"18.1233\"}";
AlgorithmiaClient client = Algorithmia.client("YOUR_API_KEY");
Algorithm algo = client.algo("algo://Gaploid/Elevation/0.3.0");
AlgoResponse result = algo.pipeJson(input);
System.out.println(result.asJson());
Googleマップには高度があります。必要なのはこのコードです
altitude="";
var init = function() {
var elevator = new google.maps.ElevationService;
map.on('mousemove', function(event) {
getLocationElevation(event.latlng, elevator);
document.getElementsByClassName("altitudeClass")[0].innerHTML = "Altitude: "+ getAltitude();
//console.debug(getAltitude());
});
}
var getLocationElevation = function (location, elevator){
// Initiate the location request
elevator.getElevationForLocations({
'locations': [location]
}, function(results, status) {
if (status === google.maps.ElevationStatus.OK) {
// Retrieve the first result
if (results[0]) {
// Open the infowindow indicating the elevation at the clicked position.
setAltitude(parseFloat(results[0].elevation).toFixed(2));
} else {
setAltitude('No results found');
}
} else {
setAltitude('Elevation service failed due to: ' + status);
}
});
}
function setAltitude(a){
altitude = a;
}
function getAltitude(){
return altitude;
}