premiumroad/linksearch_premium
周辺道路リンク検索(高機能版)
指定した緯度経度の周辺に存在する道路リンクを検索し、対象の道路リンク情報を取得します。
高機能版では、標高値や中央分離帯の有無など取得できるリンクの情報が追加されます。
※本APIを利用するには別途契約が必要です。
HTTP request method
POST/GET
ContentType
application/x-www-form-urlencoded
Parameters
*requiredは必須
| 名前 | 説明 |
|---|---|
|
positions*required array[number] ※カンマ区切り |
座標を指定。カンマ区切りで複数座標を指定可能。最大200座標 経度、緯度の順に座標をカンマ区切りで指定する。 140.08785,36.10377,140.08792,36.10375 本項目は必須項目であるため、未指定の場合はエラーとなります。 |
|
range integer default 50 |
マッチング距離範囲 指定緯度経度地点からマッチングさせる距離範囲(単位:m)を指定します。 この範囲内に道路データが存在しない場合はマッチングされません。 設定可能範囲は、整数値1~500です。 |
|
adasinfo boolean default false |
premium
ADAS情報ADAS情報を取得するかを真偽値で指定します。 true
adasを出力する
false
adasを出力しない
|
|
datum string default JGD |
入出力座標の測地系を指定します。 JGD
世界測地系
TOKYO
日本測地系
TOKYO_NAVI
日本測地系(ゼンリン ナビ地図)
|
|
llunit string default dec |
緯度経度形式 入出力経度緯度形式を指定します。 dec
10進度形式
msec
ミリ秒形式
|
|
names boolean default false |
道路名称詳細出力指定 正式名称や一般名称などの、道路名称詳細情報を出力するかどうかを指定します。 通常レスポンスされる一般名称[road_name]とは別に、整備されている全呼び名種別の全名称をレスポンスします。 true
出力する
false
出力しない
|
|
elevationinfo boolean default false |
標高情報出力指定 標高情報を出力するかどうかを指定します。 true
出力する
false
出力しない
|
|
signal boolean default false |
信号機の有無出力指定 信号機の有無を出力するかどうかを指定します。 true
出力する
false
出力しない
|
|
cross_lane boolean default false |
交差点進入レーン出力指定 交差点進入レーンを出力するかどうかを指定します。 true
出力する
false
出力しない
|
|
intersection boolean default false |
交差点内リンク出力指定 交差点内リンクかどうかを出力するかどうかを指定します。 true
出力する
false
出力しない
|
|
stop_line boolean default false |
停止線位置出力指定 停止線位置を出力するかどうかを指定します。 true
出力する
false
出力しない
|
|
divider boolean default false |
中央分離帯の有無出力指定 中央分離帯の有無を出力するかどうかを指定します。 true
出力する
false
出力しない
|
Responses
エラーについては「エラーメッセージ一覧」を参照してください。
Media type:application/json
| キー名 | 説明 | ||||||
|---|---|---|---|---|---|---|---|
| status string |
ステータス | ||||||
| result | item | subject array[object] |
マッチング結果を距離の近い順に返却します。 マッチングしなかった場合、その場所の配列要素がnullになります。 |
||||
| link object |
マッチした道路リンク情報が入ります。 | ||||||
| link_id string |
リンクIDが入ります。 リンクにふられるID。 複数のリンク間でIDが重複する場合があり、パーマネントなIDではありません。 |
||||||
| distance number |
リンク距離(単位:m)が入ります。 | ||||||
| line object |
リンクの形状点列のオブジェクトが入ります。 ※GeoJSONのGeometry 形式 |
||||||
| elevation object |
リンクに紐づく標高情報が入ります。 | ||||||
| accuracy string |
標高値に対応する精度情報が入ります。 A
計測情報
B
数値標高に標高調整を行った情報
C
数値標高
|
||||||
| value array[number] |
リンクの各座標に紐づく標高値(単位:mm)が入ります。 | ||||||
| coordinates array[number] |
標高値に対応する座標が入ります。 | ||||||
| order string |
リンク形状座標の格納順序(進行方向)をあらわすコードが入ります。 OE
順方向
EO
逆方向
|
||||||
| road_type object |
道路種別が入ります。 | ||||||
| code string |
種別コードが入ります。 10
高速自動車国道
20
都市高速道路
30
一般国道
40
都道府県道(主要地方道)
50
一般道路(主要地方道)
60
都道府県道
70
一般道路
80
案内補助道路
90
敷地内道路
100
航路リンク
110
航路接続リンク
|
||||||
| text string |
種別名称が入ります。 | ||||||
| limited_highway boolean |
自動車専用道路かどうかの判定が入ります。
|
||||||
| number_of_lanes integer |
車線数情報が入ります。 そのリンクに含まれる車線数 (上下線分離したリンクの場合は片側だけの車線、 分離していないリンクの場合は両側合計の車線)が入ります。 不明の場合nullが入ります。 |
||||||
| road_width number |
該当リンクおける、最も区間が長い幅員(単位:m)が入ります。 不明の場合nullが入ります。 |
||||||
| road_width_max number |
最大幅員(単位:m)が入ります。 ただし、交差点内リンクなど、幅員が取得できないリンクについては0が格納されます。 また、二条分離の道路においては、上下線全体の幅員ではなく片側の幅員を優先してレスポンスするため、 road_width>road_width_maxとなる場合もあります。(幅員データの整備状況に依存します) |
||||||
| road_width_min number |
最小有効幅員(単位:m)が入ります。 ただし、交差点内リンクなど、幅員が取得できないリンクについては0が格納されます。 |
||||||
| road_width_average number |
平均幅員(単位:m)が入ります。 ただし、交差点内リンクなど、幅員が取得できないリンクについては0が格納されます。 |
||||||
| link_separation boolean |
上下線分離フラグが入ります。
|
||||||
| structure string |
リンクの構造情報が入ります。 データなしの場合はnullとなります。
|
||||||
| serv_link_code string |
サービスリンクIDが入ります。 | ||||||
| oneway_code string |
リンクがどちらの方向に通行可能かの情報が入ります。 以下の各値が10進数で入ります。不明の場合はnullとなります。 (※複数の通行可能情報が該当する場合は AND値:【順方向一方通行/無条件+逆方向一方通行/条件付】= 9) 0x0000
交通規制なし
0x0001
順方向一方通行/無条件
0x0002
順方向一方通行/条件付
0x0004
逆方向一方通行/無条件
0x0008
逆方向一方通行/条件付
0x0010
一方通行(双方向切り替え有り)/条件付
0x0020
通行禁止/無条件
0x0040
通行禁止/条件付
|
||||||
| road_name string |
道路名称が入ります。 リンクに紐づく一般名称を1件のみレスポンスします。 不明の場合はnullとなります。 |
||||||
| names_mst array[object] |
道路名称詳細情報 道路名称詳細情報が入ります。 道路名称詳細情報[names]でtrueが指定されたときのみ出力されます。 道路名称詳細情報が存在しない場合は空配列。 |
||||||
| nickname_type integer |
呼び名種別 1
正式名称(公称) 例:東京所沢線
2
一般名称 例:都道4号線
3
通称名称 例:青梅街道
4
略称名称 例:東京外環道
11
ナンバリング 例:C1
|
||||||
| road_type_mst integer |
道路種別 10
高速自動車国道/都市高速道路
20
有料道路
30
一般国道
60
都道府県道(主要地方道)
70
都道府県道
80
一般道路
|
||||||
| name_mst string |
道路名称 道路名称を出力 |
||||||
| adas object |
premium
ADAS情報オブジェクトが入ります。リクエストパラメータadasinfoがfalseの場合、 または情報が無い場合はnullが入ります。 周辺道路リンク検索には進行方向の情報が無いため、 _front,_backの形式で両方向の情報を出力します。 front
格納されている配列の順番通り
back
格納されている配列の逆順番
item->link->line(緯度経度ポリライン)を指します。 ※本パラメータを利用するには別途契約が必要です。 |
||||||
| stop_info_front object |
当該地点の一時停止情報が入ります。 一時停止情報が存在しない場合はnullが入ります。 |
||||||
| type integer |
当該地点の一時停止線の種別が入ります。
|
||||||
| distance number |
一時停止位置までの距離が入ります。(単位:cm) | ||||||
| stop_info_back object |
当該地点の一時停止情報が入ります。 一時停止情報が存在しない場合はnullが入ります。 |
||||||
| type integer |
当該地点の一時停止線の種別が入ります。
|
||||||
| distance number |
一時停止位置までの距離が入ります。(単位:cm) | ||||||
| maxspeed_front array[object] |
最高速度情報が入ります。 最高速度情報が存在しない場合はnullが入ります。 |
||||||
| limit number |
区間開始位置~区間終了位置に適用する最高速度が入ります。 (単位:Km/h) |
||||||
| start number |
区間割合相対開始位置が入ります。(単位:%) 区間割合相対開始位置とはリンクの全長を 100%とした時のlimitの開始位置です。 |
||||||
| end number |
区間割合相対終了位置が入ります。(単位:%) 区間割合相対終了位置とはリンクの全長を 100%とした時のlimitの終了位置です。 |
||||||
| maxspeed_back array[object] |
最高速度情報が入ります。 最高速度情報が存在しない場合はnullが入ります。 |
||||||
| limit number |
区間開始位置~区間終了位置に適用する最高速度が入ります。 (単位:Km/h) |
||||||
| start number |
区間割合相対開始位置が入ります。(単位:%) 区間割合相対開始位置とはリンクの全長を 100%とした時のlimitの開始位置です。 |
||||||
| end number |
区間割合相対終了位置が入ります。(単位:%) 区間割合相対終了位置とはリンクの全長を 100%とした時のlimitの終了位置です。 |
||||||
| accident_point_front array[object] |
事故多発地点情報が入ります。 事故多発地点情報が存在しない場合はnullが入ります。 |
||||||
| type string |
事故多発地点情報の種別が入ります。 point
地点型
linestring
区間型
|
||||||
| position array[number] |
typeがpointの場合経度緯度が入ります。 linestringの場合はnullが入ります。 |
||||||
| accident_point_back array[object] |
事故多発地点情報が入ります。 事故多発地点情報が存在しない場合はnullが入ります。 |
||||||
| type string |
事故多発地点情報の種別が入ります。 point
地点型
linestring
区間型
linestringの場合はnullが入ります。 |
||||||
| limitinfo_front object |
各制限情報が入ります。 | ||||||
| height number |
高さ制限規制情報が入ります。(単位:cm) | ||||||
| width number |
最大幅規制情報が入ります。(単位:cm) | ||||||
| weight number |
重量制限規制情報が入ります。(単位:kg) | ||||||
| limitinfo_back object |
各制限情報が入ります。 | ||||||
| height number |
高さ制限規制情報が入ります。(単位:cm) | ||||||
| width number |
最大幅規制情報が入ります。(単位:cm) | ||||||
| weight number |
重量制限規制情報が入ります。(単位:kg) | ||||||
| signal_info number |
信号機の有無の情報が入ります。 0
信号機なし
1
始点に信号機有り
2
終点に信号機有り
3
始点/終点に信号機有り
|
||||||
| cross_lane array[object] |
交差点進入レーンの情報が入ります。 交差点進入レーンの情報が存在しない場合はnullが格納されます。 |
||||||
| position number |
リンクの始点側か終点側を判断する情報が入ります。 0
始点の情報
1
終点の情報
|
||||||
| entry number |
交差点に進入するレーン数が入ります。 | ||||||
| gain_left number |
交差点直前で左側に増加するレーン数が入ります。 | ||||||
| gain_right number |
交差点直前で右側に増加するレーン数が入ります。 | ||||||
| dec_left number |
交差点直前で左側から減少するレーン数が入ります。 | ||||||
| dec_right number |
交差点直前で右側から減少するレーン数が入ります。 | ||||||
| dir_conf array[object] |
脱出方向レーンフラグの情報が入ります。 | ||||||
| lane_flg string |
脱出方向レーンフラグが入ります。 矢印方向へ脱出可能なレーンを左から1レーンにつき1文字の文字列で表す。 0
進入不可
1
進入可能
|
||||||
| signpost number |
矢印方向が入ります。 矢印ペイントが示す進行方向を、交差点ノードからみた進入リンクの方向を6時とした12時間刻みで表す。 例)12:12時方向、1:1時方向、2:2時方向、・・・、11:11時方向 |
||||||
| intersection boolean |
交差点内リンクかどうかのフラグが入ります。 true
交差点内リンクである
false
交差点内リンクでない
|
||||||
| stop_line array[object] |
停止線位置の情報が入ります。 停止線位置の情報が存在しない場合はnullが格納されます。 |
||||||
| direction number |
リンク方向を判断する情報が入ります。 0
順方向
1
逆方向
|
||||||
| offset_distance_ident number |
オフセット距離識別フラグが入ります。 0
順方向にオフセット
1
逆方向にオフセット
|
||||||
| offset_distance number |
オフセット距離が入ります。(単位:cm) | ||||||
| divider boolean |
中央分離帯の有無情報が入ります。
true
中央分離帯あり
false
中央分離帯なし
|
||||||
| closest array[number] |
マッチしたリンク上の最寄り点の緯度経度が入ります。 | ||||||
| distance number |
入力点から最寄り点までの距離(単位:m)が入ります。 | ||||||
Media typetext/plain
| キー名 | 説明 | |||
|---|---|---|---|---|
| status string |
ステータス | |||
| message object |
エラーメッセージ エラー内容が分かるメッセージを出力します。 |
|||
Example
https://[domain]/route/road/linksearch_premium?positions=140.08785,36.10377,140.08792,36.10375&range=200&datum=JGD&llunit=dec&signal=true&cross_lane=true&intersection=true&stop_line=true÷r=true&elevationinfo=true&adasinfo=true
{
"result": {
"item": [
{
"subject": [
{
"closest": [
140.0895103618836,
36.103235948350694
],
"distance": 160.82386454287968,
"link": {
"adas": null,
"cross_lane": null,
"distance": 140.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08966200086806,
36.10430636935764,
140.08966335720487,
36.104298231336806,
140.08966552734375,
36.104274631076386,
140.08967041015626,
36.104220648871525,
140.08967529296876,
36.104166937934025,
140.089677734375,
36.104151475694444,
140.08968587239585,
36.10409749348958,
140.08969401041668,
36.10404351128472,
140.0897021484375,
36.10398980034722,
140.08971408420138,
36.10396538628472,
140.08973822699653,
36.103914930555554,
140.08976236979166,
36.10386447482639,
140.0897865125868,
36.10381401909722,
140.08981065538194,
36.103763563368055,
140.0898347981771,
36.10371310763889,
140.08985894097222,
36.10366265190972,
140.08986273871528,
36.1036363389757,
140.08987033420138,
36.103582356770836,
140.0898779296875,
36.103528374565975,
140.08987711588543,
36.103526475694444,
140.08985894097222,
36.103474663628475,
140.08981635199652,
36.10344536675347,
140.08976535373264,
36.10341037326389,
140.08971435546874,
36.10337565104167,
140.08966335720487,
36.10334065755208,
140.08961235894097,
36.1033056640625,
140.0895613606771,
36.10327067057292,
140.0895103624132,
36.103235948350694,
140.0894957139757,
36.10319851345486
],
"value": [
22200,
22200,
22200,
22200,
22100,
22200,
22100,
22000,
22100,
22100,
22100,
22000,
22100,
22000,
22100,
22100,
22100,
22000,
22200,
22200,
22100,
22300,
22400,
22500,
22400,
22400,
22300,
22200,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0896617296007,
36.10430609809028,
140.0897021484375,
36.10398952907986,
140.08985894097222,
36.10366238064236,
140.08987765842014,
36.103528374565975,
140.08985894097222,
36.103474663628475,
140.0895103624132,
36.103235948350694,
140.08949544270834,
36.10319851345486
],
"type": "LineString"
},
"link_id": "5150010000040306885",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 4.56,
"road_width_average": 5.66,
"road_width_max": 9.07,
"road_width_min": 4.56,
"serv_link_code": "961989218383429651",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.089495442709,
36.10319851345486
],
"distance": 161.1647464109011,
"link": {
"adas": null,
"cross_lane": null,
"distance": 21.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08962972005207,
36.103039008246526,
140.08958848741318,
36.10308213975694,
140.0895773654514,
36.103093804253476,
140.08953586154513,
36.1031361219618,
140.0894997829861,
36.10317301432292,
140.0894957139757,
36.10319851345486
],
"value": [
22300,
22200,
22200,
22200,
22200,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08962972005207,
36.103038736979165,
140.08949951171874,
36.10317301432292,
140.08949544270834,
36.10319851345486
],
"type": "LineString"
},
"link_id": "5150010000040306884",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 9.66,
"road_width_average": 10.2,
"road_width_max": 10.94,
"road_width_min": 9.66,
"serv_link_code": "961989218383429710",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0891156199742,
36.10265458321038
],
"distance": 168.24461991870956,
"link": {
"adas": null,
"cross_lane": null,
"distance": 209.3,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.08801784939237,
36.10168429904514,
140.0880552842882,
36.10171657986111,
140.08809271918403,
36.10175021701389,
140.08813042534723,
36.10178358289931,
140.08816786024306,
36.10181586371528,
140.08820556640626,
36.101849500868056,
140.0882430013021,
36.10188286675347,
140.0882807074653,
36.10191650390625,
140.08831814236112,
36.10194986979167,
140.08835557725695,
36.10198215060764,
140.08839328342015,
36.102015787760415,
140.08843071831598,
36.10204915364584,
140.08846842447917,
36.10208143446181,
140.088505859375,
36.10211480034722,
140.0885435655382,
36.1021484375,
140.08858100043403,
36.10218207465278,
140.08861843532986,
36.102215440538195,
140.08865614149306,
36.10224772135417,
140.0886935763889,
36.10228108723958,
140.0887312825521,
36.102314724392365,
140.08876871744792,
36.10234700520834,
140.08880642361112,
36.10238037109375,
140.08884385850695,
36.10241400824653,
140.08888129340278,
36.10244764539931,
140.08891899956598,
36.10248101128472,
140.0889564344618,
36.102513292100696,
140.088994140625,
36.10254665798611,
140.08903157552083,
36.102580295138885,
140.08906928168403,
36.10261257595486,
140.08910671657986,
36.10264594184028,
140.0891148546007,
36.10265407986111,
140.0891468641493,
36.10267686631944,
140.0891872829861,
36.10270779079861,
140.08922878689236,
36.10273844401042,
140.0892689344618,
36.10276936848958,
140.08931043836805,
36.10280029296875,
140.08935085720486,
36.10283094618055,
140.0893910047743,
36.10286051432292,
140.08943250868055,
36.10289143880208,
140.08947292751736,
36.10292236328125,
140.08951443142362,
36.10295301649305,
140.08955457899305,
36.10298258463542,
140.08957600911458,
36.10299858940972,
140.08962972005207,
36.103039008246526
],
"value": [
23700,
23600,
23600,
23600,
23500,
23500,
23500,
23400,
23400,
23300,
23300,
23300,
23200,
23200,
23100,
23100,
23100,
23000,
22900,
22900,
22800,
22700,
22700,
22700,
22600,
22600,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22400,
22400,
22400,
22400,
22400,
22400
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.088017578125,
36.10168429904514,
140.08911458333333,
36.10265380859375,
140.08962972005207,
36.103038736979165
],
"type": "LineString"
},
"link_id": "5150010000062924107",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 8.04,
"road_width_average": 8.61,
"road_width_max": 11.62,
"road_width_min": 8.04,
"serv_link_code": "961989218383429739",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896617296253,
36.10430609809028
],
"distance": 173.64426814770408,
"link": {
"adas": null,
"cross_lane": null,
"distance": 170.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08878743489583,
36.10565266927083,
140.0888170030382,
36.10562065972222,
140.0888449435764,
36.10558892144097,
140.08888346354166,
36.10554470486111,
140.08892198350694,
36.10550048828125,
140.08896077473958,
36.10545627170139,
140.08899929470485,
36.10541232638889,
140.0890380859375,
36.10536810980903,
140.0890766059028,
36.10532389322917,
140.08911539713543,
36.1052796766493,
140.0891539171007,
36.105235460069444,
140.08919243706598,
36.105191514756946,
140.08921875,
36.10515380859375,
140.08925184461805,
36.105106608072916,
140.08928466796874,
36.10505940755208,
140.08931749131943,
36.10501220703125,
140.08935031467013,
36.10496527777778,
140.08938313802082,
36.10491807725695,
140.08941596137151,
36.10487087673611,
140.0894487847222,
36.104823947482636,
140.08947672526043,
36.104777560763885,
140.08950602213542,
36.10472873263889,
140.08953531901042,
36.10467990451389,
140.08956461588542,
36.10463107638889,
140.08959364149305,
36.10458251953125,
140.08960069444444,
36.10456244574653,
140.08961859809028,
36.10451009114583,
140.08963650173612,
36.104457736545136,
140.089638671875,
36.10444688585069,
140.08964898003472,
36.10439317491319,
140.08965928819444,
36.10433973524306,
140.08966200086806,
36.10430636935764
],
"value": [
22200,
22100,
22200,
22200,
22200,
22300,
22200,
22200,
22200,
22300,
22300,
22400,
22500,
22600,
22600,
22600,
22600,
22500,
22400,
22300,
22300,
22400,
22400,
22300,
22300,
22300,
22400,
22200,
22200,
22100,
22100,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08878743489583,
36.10565266927083,
140.08919243706598,
36.105191243489585,
140.08944851345487,
36.104823676215275,
140.08959337022569,
36.10458251953125,
140.08963623046876,
36.104457736545136,
140.0896617296007,
36.10430609809028
],
"type": "LineString"
},
"link_id": "5150010000040306906",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 5.15,
"road_width_average": 5.41,
"road_width_max": 6.15,
"road_width_min": 5.15,
"serv_link_code": "961989218383429650",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896617296007,
36.10430609809028
],
"distance": 173.6444234261481,
"link": {
"adas": null,
"cross_lane": null,
"distance": 66.1,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08966200086806,
36.10430636935764,
140.08969672309027,
36.104319661458334,
140.08975613064237,
36.104343804253475,
140.08981553819444,
36.10436821831597,
140.08987521701388,
36.10439263237847,
140.08993462456598,
36.10441704644097,
140.08999430338542,
36.10444146050347,
140.0900537109375,
36.104465874565975,
140.09011338975694,
36.10449001736111,
140.09017279730904,
36.10451443142361,
140.09023247612848,
36.10453884548611,
140.09029188368055,
36.10456325954861,
140.09030300564237,
36.10456787109375,
140.09031765407985,
36.10457438151042
],
"value": [
22200,
21900,
21600,
21500,
21400,
21500,
21400,
21400,
21500,
21500,
21600,
21600,
21700,
21200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0896617296007,
36.10430609809028,
140.09031765407985,
36.10457438151042
],
"type": "LineString"
},
"link_id": "5150010000040306905",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.37,
"road_width_average": 3.6,
"road_width_max": 7.35,
"road_width_min": 3.37,
"serv_link_code": "961989218383429667",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08917546570459,
36.10260574516006
],
"distance": 175.88133055626548,
"link": {
"adas": null,
"cross_lane": null,
"distance": 208,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.0896834309896,
36.102986653645836,
140.0896443684896,
36.10295708550347,
140.08960422092014,
36.10292751736111,
140.08956271701388,
36.10289686414931,
140.08952256944445,
36.10286593967014,
140.08948215060764,
36.10283501519097,
140.08944064670138,
36.10280436197917,
140.08940049913195,
36.10277479383681,
140.08935872395833,
36.10274386935764,
140.08931857638888,
36.10271294487847,
140.08927842881945,
36.10268229166667,
140.0892369249132,
36.1026513671875,
140.08919650607638,
36.10262179904514,
140.08916314019098,
36.102596299913195,
140.08915635850695,
36.10258978949653,
140.08911865234376,
36.102557508680555,
140.08908121744793,
36.10252387152778,
140.0890437825521,
36.10249050564236,
140.0890060763889,
36.10245686848958,
140.08896864149307,
36.10242458767361,
140.08893093532987,
36.102391221788196,
140.08889350043404,
36.10235758463541,
140.08885579427084,
36.10232421875,
140.088818359375,
36.10229193793403,
140.08878092447915,
36.10225830078125,
140.08874321831598,
36.10222493489584,
140.08870578342015,
36.102191297743055,
140.08866807725695,
36.10215928819444,
140.08863064236112,
36.10212565104167,
140.08859293619793,
36.102092013888885,
140.0885555013021,
36.10205864800347,
140.08851806640624,
36.1020263671875,
140.08848036024307,
36.101993001302084,
140.0884429253472,
36.10195936414931,
140.08840521918404,
36.10192572699653,
140.08836778428818,
36.101893717447915,
140.08832899305557,
36.10186008029514,
140.08829264322915,
36.101826443142365,
140.08825520833332,
36.10179307725694,
140.08821750217015,
36.10176079644097,
140.0881800672743,
36.101727430555556,
140.08814236111112,
36.10169379340278,
140.08810492621527,
36.10166015625,
140.08808078342014,
36.10164008246528
],
"value": [
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22500,
22400,
22500,
22500,
22500,
22600,
22600,
22700,
22800,
22800,
22900,
23000,
23000,
23100,
23100,
23100,
23200,
23200,
23300,
23300,
23400,
23400,
23500,
23500,
23600,
23600,
23600,
23700,
23700
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08968315972223,
36.102986382378475,
140.0891628689236,
36.102596299913195,
140.08808051215277,
36.10164008246528
],
"type": "LineString"
},
"link_id": "5150010000062924106",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 8.04,
"road_width_average": 8.61,
"road_width_max": 11.62,
"road_width_min": 8.04,
"serv_link_code": "961989218383429736",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08962972005207,
36.103038736979165
],
"distance": 179.62758842710696,
"link": {
"adas": null,
"cross_lane": null,
"distance": 47.7,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.08962972005207,
36.103039008246526,
140.0897021484375,
36.103093804253476,
140.08974636501736,
36.103122016059025,
140.0897892252604,
36.10315022786458,
140.08983235677084,
36.10317843967014,
140.0898765733507,
36.103206651475695,
140.08991943359376,
36.10323486328125,
140.0899622938368,
36.10326280381945,
140.09000651041666,
36.103291015625,
140.09004014756945,
36.103312445746525
],
"value": [
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08962972005207,
36.103038736979165,
140.0900398763021,
36.103312445746525
],
"type": "LineString"
},
"link_id": "5150010000040306882",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 7.68,
"road_width_average": 7.85,
"road_width_max": 8.77,
"road_width_min": 7.67,
"serv_link_code": "961989218383429740",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08962972006987,
36.103038736979165
],
"distance": 179.62761608663823,
"link": {
"adas": null,
"cross_lane": null,
"distance": 7.6,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.0896834309896,
36.102986653645836,
140.08962972005207,
36.103039008246526
],
"value": [
22300,
22400
]
},
"intersection": true,
"limited_highway": false,
"line": {
"coordinates": [
140.08968315972223,
36.102986382378475,
140.08962972005207,
36.103038736979165
],
"type": "LineString"
},
"link_id": "5150010000062924108",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.51,
"road_width_average": 0,
"road_width_max": 0,
"road_width_min": 0,
"serv_link_code": "961989218383429703",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896831568795,
36.102986382378475
],
"distance": 186.5683545538564,
"link": {
"adas": null,
"cross_lane": null,
"distance": 95.6,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.09051350911457,
36.10352430555555,
140.09043050130208,
36.10347601996528,
140.09038736979167,
36.10344672309028,
140.09034315321182,
36.103419867621525,
140.09030029296875,
36.10339165581597,
140.0902574327257,
36.10336344401042,
140.09021321614583,
36.10333523220486,
140.09017008463542,
36.10330729166667,
140.09012722439235,
36.10327907986111,
140.0900830078125,
36.103250868055554,
140.09004014756945,
36.10322265625,
140.08999593098957,
36.10319444444445,
140.08995307074653,
36.10316623263889,
140.08990993923612,
36.103138292100695,
140.08986572265624,
36.10311008029514,
140.0898228624132,
36.10308186848958,
140.08977864583332,
36.103053656684025,
140.08973958333334,
36.10302815755208,
140.0896834309896,
36.102986653645836
],
"value": [
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.09051350911457,
36.10352430555555,
140.08968315972223,
36.102986382378475
],
"type": "LineString"
},
"link_id": "5150010000040306881",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 7.66,
"road_width_average": 7.85,
"road_width_max": 8.77,
"road_width_min": 7.67,
"serv_link_code": "961989218383429735",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896831597824,
36.102986382378475
],
"distance": 186.5692335212392,
"link": {
"adas": null,
"cross_lane": null,
"distance": 61.6,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.0898347981771,
36.10246229383681,
140.0898282877604,
36.10251600477431,
140.08982177734376,
36.10256998697917,
140.08981526692708,
36.10262369791667,
140.08980875651042,
36.10267768012153,
140.08980224609374,
36.10273139105903,
140.0897957356771,
36.10278537326389,
140.0897892252604,
36.10283935546875,
140.08978271484375,
36.10289143880208,
140.0897664388021,
36.10290608723958,
140.08972357855902,
36.102947591145835,
140.0896834309896,
36.102986653645836
],
"value": [
22300,
22200,
22200,
22100,
22200,
22200,
22200,
22100,
22000,
22000,
22100,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0898347981771,
36.10246202256945,
140.08978244357638,
36.10289116753472,
140.08968315972223,
36.102986382378475
],
"type": "LineString"
},
"link_id": "5150010000040306878",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.51,
"road_width_average": 3.99,
"road_width_max": 4.76,
"road_width_min": 3.51,
"serv_link_code": "961989218383429636",
"signal_info": 0,
"stop_line": null,
"structure": null
}
}
]
},
{
"subject": [
{
"closest": [
140.0895103618836,
36.103235948350694
],
"distance": 154.1466917763567,
"link": {
"adas": null,
"cross_lane": null,
"distance": 140.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08966200086806,
36.10430636935764,
140.08966335720487,
36.104298231336806,
140.08966552734375,
36.104274631076386,
140.08967041015626,
36.104220648871525,
140.08967529296876,
36.104166937934025,
140.089677734375,
36.104151475694444,
140.08968587239585,
36.10409749348958,
140.08969401041668,
36.10404351128472,
140.0897021484375,
36.10398980034722,
140.08971408420138,
36.10396538628472,
140.08973822699653,
36.103914930555554,
140.08976236979166,
36.10386447482639,
140.0897865125868,
36.10381401909722,
140.08981065538194,
36.103763563368055,
140.0898347981771,
36.10371310763889,
140.08985894097222,
36.10366265190972,
140.08986273871528,
36.1036363389757,
140.08987033420138,
36.103582356770836,
140.0898779296875,
36.103528374565975,
140.08987711588543,
36.103526475694444,
140.08985894097222,
36.103474663628475,
140.08981635199652,
36.10344536675347,
140.08976535373264,
36.10341037326389,
140.08971435546874,
36.10337565104167,
140.08966335720487,
36.10334065755208,
140.08961235894097,
36.1033056640625,
140.0895613606771,
36.10327067057292,
140.0895103624132,
36.103235948350694,
140.0894957139757,
36.10319851345486
],
"value": [
22200,
22200,
22200,
22200,
22100,
22200,
22100,
22000,
22100,
22100,
22100,
22000,
22100,
22000,
22100,
22100,
22100,
22000,
22200,
22200,
22100,
22300,
22400,
22500,
22400,
22400,
22300,
22200,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0896617296007,
36.10430609809028,
140.0897021484375,
36.10398952907986,
140.08985894097222,
36.10366238064236,
140.08987765842014,
36.103528374565975,
140.08985894097222,
36.103474663628475,
140.0895103624132,
36.103235948350694,
140.08949544270834,
36.10319851345486
],
"type": "LineString"
},
"link_id": "5150010000040306885",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 4.56,
"road_width_average": 5.66,
"road_width_max": 9.07,
"road_width_min": 4.56,
"serv_link_code": "961989218383429651",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.089495442709,
36.10319851345486
],
"distance": 154.49741987682785,
"link": {
"adas": null,
"cross_lane": null,
"distance": 21.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08962972005207,
36.103039008246526,
140.08958848741318,
36.10308213975694,
140.0895773654514,
36.103093804253476,
140.08953586154513,
36.1031361219618,
140.0894997829861,
36.10317301432292,
140.0894957139757,
36.10319851345486
],
"value": [
22300,
22200,
22200,
22200,
22200,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08962972005207,
36.103038736979165,
140.08949951171874,
36.10317301432292,
140.08949544270834,
36.10319851345486
],
"type": "LineString"
},
"link_id": "5150010000040306884",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 9.66,
"road_width_average": 10.2,
"road_width_max": 10.94,
"road_width_min": 9.66,
"serv_link_code": "961989218383429710",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08914122062308,
36.10267371296802
],
"distance": 162.34245666080804,
"link": {
"adas": null,
"cross_lane": null,
"distance": 209.3,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.08801784939237,
36.10168429904514,
140.0880552842882,
36.10171657986111,
140.08809271918403,
36.10175021701389,
140.08813042534723,
36.10178358289931,
140.08816786024306,
36.10181586371528,
140.08820556640626,
36.101849500868056,
140.0882430013021,
36.10188286675347,
140.0882807074653,
36.10191650390625,
140.08831814236112,
36.10194986979167,
140.08835557725695,
36.10198215060764,
140.08839328342015,
36.102015787760415,
140.08843071831598,
36.10204915364584,
140.08846842447917,
36.10208143446181,
140.088505859375,
36.10211480034722,
140.0885435655382,
36.1021484375,
140.08858100043403,
36.10218207465278,
140.08861843532986,
36.102215440538195,
140.08865614149306,
36.10224772135417,
140.0886935763889,
36.10228108723958,
140.0887312825521,
36.102314724392365,
140.08876871744792,
36.10234700520834,
140.08880642361112,
36.10238037109375,
140.08884385850695,
36.10241400824653,
140.08888129340278,
36.10244764539931,
140.08891899956598,
36.10248101128472,
140.0889564344618,
36.102513292100696,
140.088994140625,
36.10254665798611,
140.08903157552083,
36.102580295138885,
140.08906928168403,
36.10261257595486,
140.08910671657986,
36.10264594184028,
140.0891148546007,
36.10265407986111,
140.0891468641493,
36.10267686631944,
140.0891872829861,
36.10270779079861,
140.08922878689236,
36.10273844401042,
140.0892689344618,
36.10276936848958,
140.08931043836805,
36.10280029296875,
140.08935085720486,
36.10283094618055,
140.0893910047743,
36.10286051432292,
140.08943250868055,
36.10289143880208,
140.08947292751736,
36.10292236328125,
140.08951443142362,
36.10295301649305,
140.08955457899305,
36.10298258463542,
140.08957600911458,
36.10299858940972,
140.08962972005207,
36.103039008246526
],
"value": [
23700,
23600,
23600,
23600,
23500,
23500,
23500,
23400,
23400,
23300,
23300,
23300,
23200,
23200,
23100,
23100,
23100,
23000,
22900,
22900,
22800,
22700,
22700,
22700,
22600,
22600,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22500,
22400,
22400,
22400,
22400,
22400,
22400
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.088017578125,
36.10168429904514,
140.08911458333333,
36.10265380859375,
140.08962972005207,
36.103038736979165
],
"type": "LineString"
},
"link_id": "5150010000062924107",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 8.04,
"road_width_average": 8.61,
"road_width_max": 11.62,
"road_width_min": 8.04,
"serv_link_code": "961989218383429739",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896617296253,
36.10430609809028
],
"distance": 168.53622708489766,
"link": {
"adas": null,
"cross_lane": null,
"distance": 170.8,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08878743489583,
36.10565266927083,
140.0888170030382,
36.10562065972222,
140.0888449435764,
36.10558892144097,
140.08888346354166,
36.10554470486111,
140.08892198350694,
36.10550048828125,
140.08896077473958,
36.10545627170139,
140.08899929470485,
36.10541232638889,
140.0890380859375,
36.10536810980903,
140.0890766059028,
36.10532389322917,
140.08911539713543,
36.1052796766493,
140.0891539171007,
36.105235460069444,
140.08919243706598,
36.105191514756946,
140.08921875,
36.10515380859375,
140.08925184461805,
36.105106608072916,
140.08928466796874,
36.10505940755208,
140.08931749131943,
36.10501220703125,
140.08935031467013,
36.10496527777778,
140.08938313802082,
36.10491807725695,
140.08941596137151,
36.10487087673611,
140.0894487847222,
36.104823947482636,
140.08947672526043,
36.104777560763885,
140.08950602213542,
36.10472873263889,
140.08953531901042,
36.10467990451389,
140.08956461588542,
36.10463107638889,
140.08959364149305,
36.10458251953125,
140.08960069444444,
36.10456244574653,
140.08961859809028,
36.10451009114583,
140.08963650173612,
36.104457736545136,
140.089638671875,
36.10444688585069,
140.08964898003472,
36.10439317491319,
140.08965928819444,
36.10433973524306,
140.08966200086806,
36.10430636935764
],
"value": [
22200,
22100,
22200,
22200,
22200,
22300,
22200,
22200,
22200,
22300,
22300,
22400,
22500,
22600,
22600,
22600,
22600,
22500,
22400,
22300,
22300,
22400,
22400,
22300,
22300,
22300,
22400,
22200,
22200,
22100,
22100,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08878743489583,
36.10565266927083,
140.08919243706598,
36.105191243489585,
140.08944851345487,
36.104823676215275,
140.08959337022569,
36.10458251953125,
140.08963623046876,
36.104457736545136,
140.0896617296007,
36.10430609809028
],
"type": "LineString"
},
"link_id": "5150010000040306906",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 5.15,
"road_width_average": 5.41,
"road_width_max": 6.15,
"road_width_min": 5.15,
"serv_link_code": "961989218383429650",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896617296007,
36.10430609809028
],
"distance": 168.53637549933737,
"link": {
"adas": null,
"cross_lane": null,
"distance": 66.1,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.08966200086806,
36.10430636935764,
140.08969672309027,
36.104319661458334,
140.08975613064237,
36.104343804253475,
140.08981553819444,
36.10436821831597,
140.08987521701388,
36.10439263237847,
140.08993462456598,
36.10441704644097,
140.08999430338542,
36.10444146050347,
140.0900537109375,
36.104465874565975,
140.09011338975694,
36.10449001736111,
140.09017279730904,
36.10451443142361,
140.09023247612848,
36.10453884548611,
140.09029188368055,
36.10456325954861,
140.09030300564237,
36.10456787109375,
140.09031765407985,
36.10457438151042
],
"value": [
22200,
21900,
21600,
21500,
21400,
21500,
21400,
21400,
21500,
21500,
21600,
21600,
21700,
21200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0896617296007,
36.10430609809028,
140.09031765407985,
36.10457438151042
],
"type": "LineString"
},
"link_id": "5150010000040306905",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.37,
"road_width_average": 3.6,
"road_width_max": 7.35,
"road_width_min": 3.37,
"serv_link_code": "961989218383429667",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08920094672956,
36.10262484923877
],
"distance": 169.97396558541817,
"link": {
"adas": null,
"cross_lane": null,
"distance": 208,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.0896834309896,
36.102986653645836,
140.0896443684896,
36.10295708550347,
140.08960422092014,
36.10292751736111,
140.08956271701388,
36.10289686414931,
140.08952256944445,
36.10286593967014,
140.08948215060764,
36.10283501519097,
140.08944064670138,
36.10280436197917,
140.08940049913195,
36.10277479383681,
140.08935872395833,
36.10274386935764,
140.08931857638888,
36.10271294487847,
140.08927842881945,
36.10268229166667,
140.0892369249132,
36.1026513671875,
140.08919650607638,
36.10262179904514,
140.08916314019098,
36.102596299913195,
140.08915635850695,
36.10258978949653,
140.08911865234376,
36.102557508680555,
140.08908121744793,
36.10252387152778,
140.0890437825521,
36.10249050564236,
140.0890060763889,
36.10245686848958,
140.08896864149307,
36.10242458767361,
140.08893093532987,
36.102391221788196,
140.08889350043404,
36.10235758463541,
140.08885579427084,
36.10232421875,
140.088818359375,
36.10229193793403,
140.08878092447915,
36.10225830078125,
140.08874321831598,
36.10222493489584,
140.08870578342015,
36.102191297743055,
140.08866807725695,
36.10215928819444,
140.08863064236112,
36.10212565104167,
140.08859293619793,
36.102092013888885,
140.0885555013021,
36.10205864800347,
140.08851806640624,
36.1020263671875,
140.08848036024307,
36.101993001302084,
140.0884429253472,
36.10195936414931,
140.08840521918404,
36.10192572699653,
140.08836778428818,
36.101893717447915,
140.08832899305557,
36.10186008029514,
140.08829264322915,
36.101826443142365,
140.08825520833332,
36.10179307725694,
140.08821750217015,
36.10176079644097,
140.0881800672743,
36.101727430555556,
140.08814236111112,
36.10169379340278,
140.08810492621527,
36.10166015625,
140.08808078342014,
36.10164008246528
],
"value": [
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22500,
22400,
22500,
22500,
22500,
22600,
22600,
22700,
22800,
22800,
22900,
23000,
23000,
23100,
23100,
23100,
23200,
23200,
23300,
23300,
23400,
23400,
23500,
23500,
23600,
23600,
23600,
23700,
23700
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08968315972223,
36.102986382378475,
140.0891628689236,
36.102596299913195,
140.08808051215277,
36.10164008246528
],
"type": "LineString"
},
"link_id": "5150010000062924106",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 8.04,
"road_width_average": 8.61,
"road_width_max": 11.62,
"road_width_min": 8.04,
"serv_link_code": "961989218383429736",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08962972005207,
36.103038736979165
],
"distance": 173.00384695286718,
"link": {
"adas": null,
"cross_lane": null,
"distance": 47.7,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.08962972005207,
36.103039008246526,
140.0897021484375,
36.103093804253476,
140.08974636501736,
36.103122016059025,
140.0897892252604,
36.10315022786458,
140.08983235677084,
36.10317843967014,
140.0898765733507,
36.103206651475695,
140.08991943359376,
36.10323486328125,
140.0899622938368,
36.10326280381945,
140.09000651041666,
36.103291015625,
140.09004014756945,
36.103312445746525
],
"value": [
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400,
22400
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.08962972005207,
36.103038736979165,
140.0900398763021,
36.103312445746525
],
"type": "LineString"
},
"link_id": "5150010000040306882",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 7.68,
"road_width_average": 7.85,
"road_width_max": 8.77,
"road_width_min": 7.67,
"serv_link_code": "961989218383429740",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.08962972006987,
36.103038736979165
],
"distance": 173.00387321790467,
"link": {
"adas": null,
"cross_lane": null,
"distance": 7.6,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.0896834309896,
36.102986653645836,
140.08962972005207,
36.103039008246526
],
"value": [
22300,
22400
]
},
"intersection": true,
"limited_highway": false,
"line": {
"coordinates": [
140.08968315972223,
36.102986382378475,
140.08962972005207,
36.103038736979165
],
"type": "LineString"
},
"link_id": "5150010000062924108",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.51,
"road_width_average": 0,
"road_width_max": 0,
"road_width_min": 0,
"serv_link_code": "961989218383429703",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896831568795,
36.102986382378475
],
"distance": 179.9599554394898,
"link": {
"adas": null,
"cross_lane": null,
"distance": 95.6,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.09051350911457,
36.10352430555555,
140.09043050130208,
36.10347601996528,
140.09038736979167,
36.10344672309028,
140.09034315321182,
36.103419867621525,
140.09030029296875,
36.10339165581597,
140.0902574327257,
36.10336344401042,
140.09021321614583,
36.10333523220486,
140.09017008463542,
36.10330729166667,
140.09012722439235,
36.10327907986111,
140.0900830078125,
36.103250868055554,
140.09004014756945,
36.10322265625,
140.08999593098957,
36.10319444444445,
140.08995307074653,
36.10316623263889,
140.08990993923612,
36.103138292100695,
140.08986572265624,
36.10311008029514,
140.0898228624132,
36.10308186848958,
140.08977864583332,
36.103053656684025,
140.08973958333334,
36.10302815755208,
140.0896834309896,
36.102986653645836
],
"value": [
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22200,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300,
22300
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.09051350911457,
36.10352430555555,
140.08968315972223,
36.102986382378475
],
"type": "LineString"
},
"link_id": "5150010000040306881",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 7.66,
"road_width_average": 7.85,
"road_width_max": 8.77,
"road_width_min": 7.67,
"serv_link_code": "961989218383429735",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0896831597824,
36.102986382378475
],
"distance": 179.9608020876278,
"link": {
"adas": null,
"cross_lane": null,
"distance": 61.6,
"divider": false,
"elevation": {
"accuracy": "C",
"coordinates": [
140.0898347981771,
36.10246229383681,
140.0898282877604,
36.10251600477431,
140.08982177734376,
36.10256998697917,
140.08981526692708,
36.10262369791667,
140.08980875651042,
36.10267768012153,
140.08980224609374,
36.10273139105903,
140.0897957356771,
36.10278537326389,
140.0897892252604,
36.10283935546875,
140.08978271484375,
36.10289143880208,
140.0897664388021,
36.10290608723958,
140.08972357855902,
36.102947591145835,
140.0896834309896,
36.102986653645836
],
"value": [
22300,
22200,
22200,
22100,
22200,
22200,
22200,
22100,
22000,
22000,
22100,
22200
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0898347981771,
36.10246202256945,
140.08978244357638,
36.10289116753472,
140.08968315972223,
36.102986382378475
],
"type": "LineString"
},
"link_id": "5150010000040306878",
"link_separation": false,
"number_of_lanes": 1,
"oneway_code": "0",
"order": "OE",
"road_name": null,
"road_type": {
"code": "70",
"text": "一般道路"
},
"road_width": 3.51,
"road_width_average": 3.99,
"road_width_max": 4.76,
"road_width_min": 3.51,
"serv_link_code": "961989218383429636",
"signal_info": 0,
"stop_line": null,
"structure": null
}
},
{
"closest": [
140.0900398763021,
36.103312445746525
],
"distance": 196.96345261842455,
"link": {
"adas": null,
"cross_lane": null,
"distance": 54.6,
"divider": false,
"elevation": {
"accuracy": "A",
"coordinates": [
140.09004014756945,
36.103312445746525,
140.09004937065973,
36.10331922743055,
140.09009250217014,
36.10334608289931,
140.09013671875,
36.103374294704864,
140.09017957899306,
36.10340359157986,
140.0902237955729,
36.10343044704861,
140.09026665581598,
36.103458658854166,
140.0903097873264,
36.10348687065972,
140.09035400390624,
36.10351508246528,
140.0903767903646,
36.10352973090278,
140.090517578125,
36.10361436631945
],
"value": [
22400,
22400,
22400,
22400,
22300,
22300,
22300,
22300,
22300,
22300,
22300
]
},
"intersection": false,
"limited_highway": false,
"line": {
"coordinates": [
140.0900398763021,
36.103312445746525,
140.09051730685763,
36.10361409505208
],
"type": "LineString"
},
"link_id": "5150010000040306883",
"link_separation": true,
"number_of_lanes": 2,
"oneway_code": "1",
"order": "OE",
"road_name": "県道24号線",
"road_type": {
"code": "40",
"text": "都道府県道(主要地方道)"
},
"road_width": 7.68,
"road_width_average": 7.85,
"road_width_max": 8.77,
"road_width_min": 7.67,
"serv_link_code": "961989218383429741",
"signal_info": 0,
"stop_line": null,
"structure": null
}
}
]
}
]
},
"status": "OK"
}