モジュール:Adjacent stations/仏山地下鉄
表示
関連項目
[編集]
local x = "%1駅 (仏山)"
local y = "%1駅 (地下鉄)"
local yn = "%1 (地下鉄)"
local z = "%1駅 (仏山地下鉄)"
local gd = "%1駅 (広東省)"
local gz = "%1駅 (広州市)"
local p = {
["system title"] = "[[仏山地下鉄]]",
["station format"] = {
"%1駅",
-- 消歧义
-- 广佛线
["龍渓"] = gz,
["鶴洞"] = gz,
-- 2号线
-- 3号线
-- 4号线
-- 11号线
-- 广州地铁7号线
-- TNH1
},
["lines"] = {
["広仏"] = {
["title"] = "[[広仏地下鉄|広仏線]]",
["color"] = "c4d600",
["left terminus"] = "新城東",
["right terminus"] = "瀝滘"
},
["2"] = {
["title"] = "[[仏山地下鉄2号線|2号線]]",
["color"] = "f5333f",
["left terminus"] = "南荘",
["right terminus"] = "広州南駅"
},
["3"] = {
["title"] = "[[仏山地下鉄3号線|3号線]]",
["color"] = "000f9f",-- 未开通,标志色仅供参考
["left terminus"] = "鎮安", --仏科院仙溪キャンパス
["right terminus"] = "順德学院" --順德港
},
["4"] = {
["title"] = "[[仏山地下鉄4号線|4号線]]",
["color"] = "923a7f",-- 未开通,标志色仅供参考
["left terminus"] = "北江大道",
["right terminus"] = "港口路"
},
["11"] = {
["title"] = "[[仏山地下鉄11号线|11号線]]",
["color"] = "035c67",-- 未开通,标志色仅供参考
["left terminus"] = "鶴洞東",
["right terminus"] = "容奇渡口"
},
["TNH1"] = {
["title"] = "[[南海有轨电车1号线|南海有轨1号线]]",
["color"] = "5eb3e4",
["left terminus"] = "𧒽崗",
["right terminus"] = "林岳東",
},
["TNH4"] = {
["title"] = "[[南海裏水有軌電車|南海裏水有軌4号線]]",
["color"] = "bbbbbb",-- 未开通,标志色仅供参考
["left terminus"] = "里湖新城",
["right terminus"] = "里横路",
},
["TGM1"] = {
["title"] = "[[高明区現代有軌電車|高明有軌1号線]]",
["color"] = "4ca585",
["left terminus"] = "滄江路",
["right terminus"] = "智湖",
},
["_default"] = {
["title"] = "[[仏山地下鉄%1号線|%1号線]]",
["color"] = "bbbbbb"
}
},
["aliases"] = {
["1"] = "広仏",
["GF"] = "広仏",
["gf"] = "広仏",
["guangfo"] = "広仏",
["f1"] = "広仏",
["f2"] = "2",
["f3"] = "3",
["f4"] = "4",
["f11"] = "11",
["TLS1"] = "TNH4",
}
}
local stationAliases = {
-- 同站名转换
-- 广佛线
["ライ崗"] = "𧒽崗",
["虫雷崗"] = '𧒽崗',
["仏山東平"] = '東平',
-- 2号线
['広州南'] = '広州南駅',
['西樵客運'] = '西樵客運駅',
-- 3号线
["仏山高鉄"] = '仏山高鉄駅',
["北滘西"] = '北滘西駅',
["順德学院"] = '順德学院駅',
-- 4号线
-- 广州地铁7号线
-- TNH1
}
for k, v in pairs(stationAliases) do
if p["station format"][v] == nil then
p["station format"][k] = '[[' .. v .. '駅]]'
else
p["station format"][k] = p["station format"][v]
end
end
return p