Difference between revisions of "Module:Adjacent stations/Kaohsiung Rapid Transit"

From blackwiki
Jump to navigation Jump to search
blackwiki>Ythlev
blackwiki>Ythlev
Line 17: Line 17:
 
},
 
},
 
["lines"] = {
 
["lines"] = {
["Red"] = {
+
["R"] = {
 
["title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
 
["title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
 
["color"] = "d30547",
 
["color"] = "d30547",
Line 23: Line 23:
 
["right terminus"] = "Siaogang"
 
["right terminus"] = "Siaogang"
 
},
 
},
["Orange"] = {
+
["O"] = {
 
["title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
 
["title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
 
["color"] = "f77f00",
 
["color"] = "f77f00",
Line 29: Line 29:
 
["right terminus"] = "Daliao"
 
["right terminus"] = "Daliao"
 
},
 
},
["Circular"] = {
+
["C"] = {
 
["title"] = "[[Circular light rail]]",
 
["title"] = "[[Circular light rail]]",
 
["color"] = "77c35e",
 
["color"] = "77c35e",
Line 37: Line 37:
 
},
 
},
 
["aliases"] = {
 
["aliases"] = {
["r"] = "Red",
+
["red"] = "R",
["o"] = "Orange",
+
["orange"] = "O",
["c"] = "Circular"
+
["circular"] = "C"
 
}
 
}
 
}
 
}
  
 
return p
 
return p

Revision as of 13:54, 21 October 2019

Documentation for this module may be created at Module:Adjacent stations/Kaohsiung Rapid Transit/doc

local x = "%1 light rail station"

local p = {
	["system title"] = "[[Kaohsiung Rapid Transit]]",
	["system icon"] = "[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit]]",
	["station format"] = {
		"%1 metro station",
		["Central Park"] = "Central Park metro station (Taiwan)",
		["Ciaotou station"] = "Qiaotou station",
		["Kaohsiung Main Station"] = "%1",
		["Zuoying"] = "%1 HSR station",
		
		-- Circular light rail
		["Kaisyuan Jhonghua"] = x,
		["Hamasen"] = x,
		["Lizihnei"] = x
	},
	["lines"] = {
		["R"] = {
			["title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
			["color"] = "d30547",
			["left terminus"] = "Gangshan South",
			["right terminus"] = "Siaogang"
		},
		["O"] = {
			["title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
			["color"] = "f77f00",
			["left terminus"] = "Sizihwan",
			["right terminus"] = "Daliao"
		},
		["C"] = {
			["title"] = "[[Circular light rail]]",
			["color"] = "77c35e",
			["left terminus"] = "Hamasen",
			["right terminus"] = "Lizihnei"
		}
	},
	["aliases"] = {
		["red"] = "R",
		["orange"] = "O",
		["circular"] = "C"
	}
}

return p