経路例2: 東陽町 ⇒ 門前仲町 ⇒ 月島 ⇒ 辰巳駅
- 経路の概要
- 普通運賃とIC運賃の金額が異なる
- 東京メトロを2区間、都営地下鉄を1区間乗車するが、東陽町~月島(門前仲町における乗継特例が適用されるため)、月島~辰巳の2区間で運賃が発生する(運行会社ごとではない)
- 定期券は2社間の相互乗り入れのため経路全体で1枚となる(運行会社ごとではない)
■経路全体の運賃
"move": {
"transit_count": 2,
"fare": { // 区間ごと運賃がそれぞれ合計されている
"unit_0": 450.0, // 普通運賃
"unit_48": 444.0, // IC運賃
"unit_128_train": 11870.0, // 経路全体の通勤定期券(1ヶ月)
"unit_130_train": 33840.0, // 経路全体の通勤定期券(3ヶ月)
"unit_133_train": 64110.0 // 経路全体の通勤定期券(6ヶ月)
},
"type": "move",
"from_time": "2020-06-25T10:03:00+09:00",
"to_time": "2020-06-25T10:25:00+09:00",
"time": 22,
"distance": 6500,
"move_type": [
"local_train"
]
}
■区間ごとの運賃
- 「sections>transport>fare_break」配下にある情報から分かること
- 当該区間に存在するすべての料金区分が取得できます。
- それぞれの料金区分について、当該区間で運賃計算を行ったかどうかの結果が取得できます。
- 「true」:当該区間で運賃を算出したことを示す。金額は対応する「sections>transport>fare」を参照することで取得します。
- 「false」:次区間以降に運賃計算を持ち越したことを示す。つまり、他路線への乗り入れ「有」と判断します。
"sections": [
{
"type": "point",
"coord": {
"lat": 35.669626,
"lon": 139.817715
},
"name": "東陽町",
"node_id": "00006866",
"node_types": [
"station"
],
"numbering": {
// 一部省略
}
},
{
"next_transit": true,
"transport": {
"getoff": "1",
"color": "#009BBF",
"name": "東京メトロ東西線",
"fare_season": "normal",
"company": {
"id": "00000113",
"name": "東京地下鉄(メトロ)"
},
"links": [
{
"id": "00000771",
"name": "東京メトロ東西線",
"direction": "up",
"destination": {
"name": "中野(東京都)",
"id": "00006137"
},
"from": {
"name": "東陽町",
"id": "00006866"
},
"to": {
"name": "門前仲町",
"id": "00008702"
},
"is_timetable": "false"
}
],
"id": "00000563",
"type": "普通",
"fare_break": {
"unit_0": false, // fare_breakがすべて「false」の場合、
"unit_48": false, // 「transport>fare」オブジェクト自体が
"unit_128": false, // 出力されない(↑の出力は無視する)
"unit_130": false,
"unit_133": false,
"unit_136": false,
"unit_138": false,
"unit_141": false
}
},
"type": "move",
"move": "local_train",
"from_time": "2020-06-25T10:03:00+09:00",
"to_time": "2020-06-25T10:06:00+09:00",
"time": 3,
"distance": 2000,
"line_name": "東京メトロ東西線",
"transfer_seconds": 180
},
{
"type": "point",
"coord": {
"lat": 35.672073,
"lon": 139.795645
},
"name": "門前仲町",
"node_id": "00008702",
"node_types": [
"station"
],
"numbering": {
// 一部省略
}
},
{
"next_transit": true,
"transport": {
"fare": { // ↓の「fare_break」が「true」の区分のみ運賃を出力
"unit_0": 280.0,
"unit_48": 276.0
},
"getoff": "3・7",
"color": "#B6007A",
"name": "都営大江戸線",
"fare_season": "normal",
"company": {
"id": "00000121",
"name": "東京都交通局"
},
"links": [
{
"id": "00000792",
"name": "都営大江戸線(環状部)",
"direction": "down",
"destination": {
"name": "大門(東京都)",
"id": "00005767"
},
"from": {
"name": "門前仲町",
"id": "00008702"
},
"to": {
"name": "月島",
"id": "00002071"
},
"is_timetable": "false"
}
],
"id": "00000572",
"type": "普通",
"fare_break": {
"unit_0": true, // ↑の「fare」を参照して運賃を取得
"unit_48": true, // ↑の「fare」を参照して運賃を取得
"unit_128": false,
"unit_130": false,
"unit_133": false,
"unit_136": false,
"unit_138": false,
"unit_141": false
},
"fare_detail": [
// 一部省略
]
},
"type": "move",
"move": "local_train",
"from_time": "2020-06-25T10:13:00+09:00",
"to_time": "2020-06-25T10:15:00+09:00",
"time": 2,
"distance": 1400,
"line_name": "都営大江戸線",
"transfer_seconds": 180
},
{
"type": "point",
"coord": {
"lat": 35.663904,
"lon": 139.784204
},
"name": "月島",
"node_id": "00002071",
"node_types": [
"station"
],
"numbering": {
// 一部省略
}
},
{
"transport": {
"fare": { // ↓の「fare_break」が「true」の区分のみ運賃を出力
"unit_0": 170.0,
"unit_48": 168.0,
"unit_128": 11870.0,
"unit_130": 33840.0,
"unit_133": 64110.0,
"unit_136": 6260.0,
"unit_138": 17850.0,
"unit_141": 33810.0
},
"color": "#C1A470",
"name": "東京メトロ有楽町線",
"fare_season": "normal",
"company": {
"id": "00000113",
"name": "東京地下鉄(メトロ)"
},
"links": [
{
"id": "00000775",
"name": "東京メトロ有楽町線",
"direction": "down",
"destination": {
"name": "新木場",
"id": "00004376"
},
"from": {
"name": "月島",
"id": "00002071"
},
"to": {
"name": "辰巳",
"id": "00005854"
},
"is_timetable": "false"
}
],
"id": "00000568",
"type": "普通",
"fare_break": {
"unit_0": true, // ↑の「fare」を参照して運賃を取得
"unit_48": true, // 同上
"unit_128": true, // 同上
"unit_130": true, // 同上
"unit_133": true, // 同上
"unit_136": true, // 同上
"unit_138": true, // 同上
"unit_141": true // 同上
},
"fare_detail": [
// 一部省略
]
},
"type": "move",
"move": "local_train",
"from_time": "2020-06-25T10:21:00+09:00",
"to_time": "2020-06-25T10:25:00+09:00",
"time": 4,
"distance": 3100,
"line_name": "東京メトロ有楽町線"
},
{
"type": "point",
"coord": {
"lat": 35.645601,
"lon": 139.810522
},
"name": "辰巳",
"node_id": "00005854",
"node_types": [
"station"
],
"numbering": {
// 一部省略
}
}
]