Skip to content

Commit ed903bd

Browse files
committed
大老山隧道
1 parent a46fa82 commit ed903bd

File tree

3 files changed

+185
-118
lines changed

3 files changed

+185
-118
lines changed

public/api/hk-tunnels-tolls/tolls.json

Lines changed: 40 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -273,38 +273,67 @@
273273
]
274274
}
275275
}
276+
},
277+
"tates_cairn": {
278+
"name": "大老山隧道"
276279
}
277280
},
278281
"vehicleTypes": {
279282
"privateCar": {
280283
"name": "私家車",
281-
"hasTimeVaryingToll": true
284+
"hasTimeVaryingToll": true,
285+
"fixedTolls": {
286+
"tates_cairn": 20
287+
}
282288
},
283289
"motorcycle": {
284290
"name": "電單車",
285291
"hasTimeVaryingToll": true,
286-
"multiplier": 0.4
292+
"multiplier": 0.4,
293+
"fixedTolls": {
294+
"tates_cairn": 15
295+
}
287296
},
288297
"taxi": {
289298
"name": "的士",
290299
"hasTimeVaryingToll": false,
291-
"fixedToll": 25,
292-
"tai_lam_toll": 28
300+
"fixedTolls": {
301+
"western": 25,
302+
"cross_eastern": 25,
303+
"tai_lam": 28,
304+
"tates_cairn": 20
305+
}
293306
},
294-
"commercial": {
295-
"name": "商用車輛",
296-
"description": "貨車、小型巴士和巴士等",
307+
"lightGoods": {
308+
"name": "輕型貨車",
309+
"description": "不超逾5.5公噸的貨車、特別用途車輛",
297310
"hasTimeVaryingToll": false,
298-
"fixedToll": 50,
299-
"tai_lam_toll": 43
311+
"fixedTolls": {
312+
"western": 50,
313+
"cross_eastern": 50,
314+
"tai_lam": 43,
315+
"tates_cairn": 24
316+
}
317+
},
318+
"goods": {
319+
"name": "中型 / 重型貨車",
320+
"description": "超逾5.5公噸的貨車、特別用途車輛",
321+
"hasTimeVaryingToll": false,
322+
"fixedTolls": {
323+
"western": 50,
324+
"cross_eastern": 50,
325+
"tai_lam": 43,
326+
"tates_cairn": 28
327+
}
300328
}
301329
},
302330
"notes": [
303-
"這個程式暫時只提供三條過海隧道(西隧、紅隧、東隧)和大欖隧道的實時收費資訊",
331+
"這個程式提供三條過海隧道(西隧、紅隧、東隧)、大欖隧道及大老山隧道的收費資訊",
304332
"就私家車和電單車(包括機動三輪車)而言,不同時段之間設有過渡收費安排,以有序地銜接各時段之間的收費差距和保障道路安全。",
305333
"過海的士乘客如非在過海的士站上車,須支付去程(25元)及回程(25元)隧道費,即共50元。",
306334
"電單車在各時段的收費為私家車收費的40%。",
307335
"前往大欖隧道的私家車及電單車實施分時段收費,的士收費為28元,商用車輛收費43元。",
308-
"「商用車輛」包括貨車、小型巴士和巴士等。"
336+
"「輕型貨車」指許可車重不超過5.5噸的貨車及特別用途車輛 (掛接車輛除外)。",
337+
"「中/重型貨車」指許可車重超過5.5噸的中型貨車、重型貨車及特別用途車輛 (掛接車輛除外)。"
309338
]
310339
}

src/app/hk-tunnels-tolls/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { Metadata } from "next";
33

44
export const metadata: Metadata = {
55
title: "香港實時隧道收費 | JaylyDev",
6-
description: "即時提供香港實時三條過海隧道(西隧、東隧、紅隧)和大欖隧道收費資訊。",
6+
description: "即時提供香港實時三條過海隧道(西隧、紅隧、東隧)、大欖隧道及大老山隧道的收費資訊。",
77
openGraph: {
88
type: "article",
99
images: "https://jaylydev.github.io/hk-tunnels-tolls/icon.png",

0 commit comments

Comments
 (0)