Download OpenAPI specification:Download
ジオテクノロジーズが保有する自動車通行量(道路を通行する自動車(バイクも含む)の台数の推計値)を、2022年1月分以降から取得できます。
取得対象 | 取得可能な最新データ |
---|---|
日指定 | API利用日の前々日 |
月指定 | API利用日の前月(月初2日目以降) |
具体例について、下記をご確認ください。
API利用日 | 取得対象 | 取得可能な最新データ | 備考 |
---|---|---|---|
2023年10月2日 | 日指定 | 2023年9月30日 | |
2023年10月2日 | 月指定 | 2023年9月 | 月初2日目より、前月分のデータが取得可 |
2023年11月1日 | 日指定 | 2023年10月30日 | |
2023年11月1日 | 月指定 | 2023年9月 | 10月31日分のデータが無いため、10月分は取得不可 |
2023年11月2日 | 日指定 | 2023年10月31日 | |
2023年11月2日 | 月指定 | 2023年10月 | 月初2日目より、前月分のデータが取得可 |
本APIのご利用に際しては、以下をご留意ください。
指定エリア(円)・指定期間に対して以下を提供します。
以下のような利用用途を想定しています。
center required | string 探索円の中心座標形式center=<経度>,<緯度>
入力例
| ||||||||||||||||||||||
radius required | integer [ 1 .. 2000 ] 探索半径(m)形式radius=<半径> 入力例
| ||||||||||||||||||||||
month | integer 取得対象の月month または date のいずれかの指定が必須です。 利用日の前月まで指定可能です。 形式month=YYYYMM 入力例
| ||||||||||||||||||||||
date | integer 取得対象の日付month または date いずれかの指定が必須です。 利用日の前々日まで指定可能です。 形式date=YYYYMMDD 入力例
| ||||||||||||||||||||||
day_of_week | string 取得対象の曜日month が指定された時のみ指定可能です。 形式day_of_week=<曜日>
入力例
| ||||||||||||||||||||||
time_range | string 取得対象の時間帯3時間単位で探索時間帯を指定可能です。 未指定の場合は全時間帯(00:00-23:59)となります。 形式time_range=<開始時間帯>,<終了時間帯>
入力例
上記の記述で06:00-14:59の期間を探索します。 | ||||||||||||||||||||||
offset | integer [ 0 .. 10 ] 道路形状のオフセット距離(m)弊社データ整備において「双方向通行可能な一条道路」として定義された道路について、通行量を方向(上下線)ごとに分けて描画できるように、指定されたパラメータの距離の分だけ通行方向の左側に離した位置の道路形状を取得できます。 「単方向のみ通行可能な道路」(高速道路本線や中央分離帯などで物理的に上下線が分かれている二条道路、および、一方通行の一条道路)は、本パラメータを指定してもオフセットされません。 本パラメータは、見栄えが最適になるよう地図の表示スケールに合わせて設定していただく想定です。 形式offset=<距離> 入力例
|
x-api-key required | string APIキーによる認証を行います。 |
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [
- 139.703619,
- 35.693458
], - [
- 139.703537,
- 35.693271
]
]
}, - "properties": {
- "tr": 123,
- "link_id": -12345,
- "road_class": 1
}
}
], - "properties": {
- "tr_mon_3": 121,
- "tr_mon_4": 125,
- "ratio_mon_3_10_m": 0.025,
- "ratio_mon_3_10_f": 0.015,
- "ratio_mon_3_20_m": 0.065,
- "ratio_mon_3_20_f": 0.075,
- "ratio_mon_3_30_m": 0.145,
- "ratio_mon_3_30_f": 0.085,
- "ratio_mon_3_40_m": 0.155,
- "ratio_mon_3_40_f": 0.08,
- "ratio_mon_3_50_m": 0.16,
- "ratio_mon_3_50_f": 0.065,
- "ratio_mon_3_60_m": 0.095,
- "ratio_mon_3_60_f": 0.015,
- "ratio_mon_3_70_m": 0.015,
- "ratio_mon_3_70_f": 0.005,
- "ratio_mon_4_10_m": 0.025,
- "ratio_mon_4_10_f": 0.015,
- "ratio_mon_4_20_m": 0.065,
- "ratio_mon_4_20_f": 0.075,
- "ratio_mon_4_30_m": 0.145,
- "ratio_mon_4_30_f": 0.085,
- "ratio_mon_4_40_m": 0.155,
- "ratio_mon_4_40_f": 0.08,
- "ratio_mon_4_50_m": 0.16,
- "ratio_mon_4_50_f": 0.065,
- "ratio_mon_4_60_m": 0.095,
- "ratio_mon_4_60_f": 0.015,
- "ratio_mon_4_70_m": 0.015,
- "ratio_mon_4_70_f": 0.005,
- "center": "139.703360,35.69363",
- "radius": 2000,
- "month": 202210,
- "day_of_week": "mon",
- "time_range": "3,4",
- "offset": 5
}
}
指定の道路・指定期間に対して以下を提供します。
以下のような利用用途を想定しています。
link_id required | string 方向(上下線)別の道路のリンクID道路リンクIDは、道路API実行の直前にエリアAPIから取得したものを指定してください。 道路リンクIDはデータ更新により変化する場合がありますので、 古くなった道路リンクIDを指定すると正常にデータを取得できない場合があります。 形式link_id=<道路リンクID> 入力例
| ||||||||||||||||||||||
month | integer 取得対象の月month または date のいずれかの指定が必須です。 利用日の前月まで指定可能です。 形式month=YYYYMM 入力例
| ||||||||||||||||||||||
date | integer 取得対象の日付month または date いずれかの指定が必須です。 利用日の前々日まで指定可能です。 形式date=YYYYMMDD 入力例
| ||||||||||||||||||||||
day_of_week | string 取得対象の曜日month が指定された時のみ指定可能です。 形式day_of_week=<曜日>
入力例
| ||||||||||||||||||||||
time_range | string 取得対象の時間帯3時間単位で探索時間帯を指定可能です。 未指定の場合は全時間帯(00:00-23:59)となります。 形式time_range=<開始時間帯>,<終了時間帯>
入力例
上記の記述で06:00-14:59の期間を探索します。 | ||||||||||||||||||||||
offset | integer [ 0 .. 10 ] 道路形状のオフセット距離(m)弊社データ整備において「双方向通行可能な一条道路」として定義された道路について、通行量を方向(上下線)ごとに分けて描画できるように、指定されたパラメータの距離の分だけ通行方向の左側に離した位置の道路形状を取得できます。 「単方向のみ通行可能な道路」(高速道路本線や中央分離帯などで物理的に上下線が分かれている二条道路、および、一方通行の一条道路)は、本パラメータを指定してもオフセットされません。 本パラメータは、見栄えが最適になるよう地図の表示スケールに合わせて設定していただく想定です。 形式offset=<距離> 入力例
|
x-api-key required | string APIキーによる認証を行います。 |
{- "type": "Feature",
- "geometry": {
- "type": "LineString",
- "coordinates": [
- [
- 139.703619,
- 35.693458
], - [
- 139.703537,
- 35.693271
]
]
}, - "properties": {
- "tr_mon_3": 121,
- "tr_mon_4": 125,
- "ratio_mon_3_10_m": 0.025,
- "ratio_mon_3_10_f": 0.015,
- "ratio_mon_3_20_m": 0.065,
- "ratio_mon_3_20_f": 0.075,
- "ratio_mon_3_30_m": 0.145,
- "ratio_mon_3_30_f": 0.085,
- "ratio_mon_3_40_m": 0.155,
- "ratio_mon_3_40_f": 0.08,
- "ratio_mon_3_50_m": 0.16,
- "ratio_mon_3_50_f": 0.065,
- "ratio_mon_3_60_m": 0.095,
- "ratio_mon_3_60_f": 0.015,
- "ratio_mon_3_70_m": 0.015,
- "ratio_mon_3_70_f": 0.005,
- "ratio_mon_4_10_m": 0.025,
- "ratio_mon_4_10_f": 0.015,
- "ratio_mon_4_20_m": 0.065,
- "ratio_mon_4_20_f": 0.075,
- "ratio_mon_4_30_m": 0.145,
- "ratio_mon_4_30_f": 0.085,
- "ratio_mon_4_40_m": 0.155,
- "ratio_mon_4_40_f": 0.08,
- "ratio_mon_4_50_m": 0.16,
- "ratio_mon_4_50_f": 0.065,
- "ratio_mon_4_60_m": 0.095,
- "ratio_mon_4_60_f": 0.015,
- "ratio_mon_4_70_m": 0.015,
- "ratio_mon_4_70_f": 0.005,
- "link_id": -12345,
- "month": 202210,
- "day_of_week": "mon",
- "time_range": "3,4",
- "offset": 5,
- "road_class": 1
}
}