測地系変換
Attention!
This page has not been translated into English yet.
It is possible that some parts of description may contains old information.
Please see Japanese Documents if you need the latest and accurate information.
座標の測地系を変換します。 リクエストパラメータの測地系が日本測地系であれば世界測地系、世界測地系であれば日本測地系のデータを返します。
GET /v1/{format}/toolbox/geo/convert
parameters
Name | Type | Description |
---|---|---|
format | string | レスポンスのデータ形式の指定。必須 指定できる値: - xml: xml形式のデータ - json: json形式のデータ ※クエリパラメータではなくパスに値を指定します。 |
key | string | アクセスキー。必須 |
geoPoint | string | 座標情報 |
response
Name | Description |
---|---|
ResultSet | レスポンスの最下部を表す要素 |
ResultSet / apiVersion | WebAPIバージョン |
ResultSet / engineVersion | エンジンバージョン |
ResultSet / GeoPoint | 座標を表す要素 |
ResultSet / GeoPoint / gcs | 測地系。 - tokyo:日本測地系 - wgs84:世界測地系 |
ResultSet / GeoPoint / lati | 緯度。度分秒(DMS)単位。秒は小数第3位を四捨五入。 Format: 度.分.秒.1/100秒 Example: 35.42.6.0 |
ResultSet / GeoPoint / lati_d | 緯度。十進法度(DD)単位。 Format: 度 Example: 35.701667 |
ResultSet / GeoPoint / longi | 経度。度分秒(DMS)単位。秒は小数第3位を四捨五入。 Format: 度.分.秒.1/100秒 Example: 139.38.22.30 |
ResultSet / GeoPoint / longi_d | 経度。十進法度(DD)単位。 Format: 度 Example: 139.639527 |
example
GET /v1/xml/toolbox/geo/convert?key=アクセスキーを入力してください&geoPoint=35.162151120836,136.889373779296,wgs84
<?xml version="1.0" encoding="UTF-8"?>
<ResultSet apiVersion="1.14.0.0" engineVersion="201404_01a">
<GeoPoint gcs="tokyo" lati_d="35.158918" longi_d="136.892320" lati="35.9.32.10" longi="136.53.32.35"/>
</ResultSet>
GET /v1/json/toolbox/geo/convert?key=アクセスキーを入力してください&geoPoint=35.162151120836,136.889373779296,wgs84
{
"ResultSet": {
"apiVersion": "1.14.0.0",
"engineVersion": "201404_01a",
"GeoPoint": {
"gcs": "tokyo",
"lati_d": "35.158918",
"longi_d": "136.892320",
"lati": "35.9.32.10",
"longi": "136.53.32.35"
}
}
}