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

From blackwiki
Jump to navigation Jump to search
blackwiki>Szqecs
m (51 revisions imported)
 
(44 intermediate revisions by 6 users not shown)
Line 1: Line 1:
return {
+
local x = "%1 light rail station"
['system title'] = '[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit System]] [[Kaohsiung Rapid Transit System]]',
+
 
['station format'] = {
+
local p = {
'%1 MRT station',
+
["system title"] = "[[Kaohsiung Rapid Transit]]",
['Ciaotou'] = 'Qiaotou station',
+
["system icon"] = "[[File:Kaohsiung Mass Rapid Transit Logo(Logo Only).svg|18px|link=Kaohsiung Rapid Transit]]",
['Kaohsiung Main station'] = 'Kaohsiung station',
+
["station format"] = {
['Zuoying'] = 'Zuoying HSR station'
+
"%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
 +
["Lizihnei"] = x,
 +
["Kaisyuan Rueitian"] = x,
 +
["Cianjhen Star"] = x,
 +
["Kaisyuan Jhonghua"] = x,
 +
["Dream Mall"] = x,
 +
["Commerce and Trade Park"] = x,
 +
["Software Technology Park"] = x,
 +
["Kaohsiung Exhibition Center"] = x,
 +
["Cruise Terminal"] = x,
 +
["Glory Pier"] = x,
 +
["Love Pier"] = x,
 +
["Dayi Pier-2"] = x,
 +
["Penglai Pier-2"] = x,
 +
["Hamasen"] = x
 
},
 
},
['lines'] = {
+
["lines"] = {
['Red'] = {
+
["R"] = {
['line title'] = '[[Red line (Kaohsiung MRT)|Red line]]',
+
["title"] = "[[Red line (Kaohsiung MRT)|Red line]]",
['colour'] = 'ea0437',
+
["color"] = "d30547",
['left terminus'] = 'Gangshan South',
+
["left terminus"] = "Gangshan South",
['right terminus'] = 'Siaogang'
+
["right terminus"] = "Siaogang"
 
},
 
},
['Orange'] = {
+
["O"] = {
['line title'] = '[[Orange line (Kaohsiung MRT)|Orange line]]',
+
["title"] = "[[Orange line (Kaohsiung MRT)|Orange line]]",
['colour'] = 'ff8800',
+
["color"] = "f77f00",
['left terminus'] = 'Sizihwan',
+
["left terminus"] = "Sizihwan",
['right terminus'] = 'Daliao'
+
["right terminus"] = "Daliao"
 
},
 
},
['Circular'] = {
+
["C"] = {
['line title'] = '[[Circular light rail]]',
+
["title"] = "[[Circular light rail]]",
['colour'] = '00b14f',
+
["color"] = "77c35e",
['left terminus'] = 'Hamasen',
+
["left terminus"] = "Lizihnei",
['right terminus'] = 'Lizihnei'
+
["right terminus"] = "Hamasen"
 
}
 
}
 +
},
 +
["aliases"] = {
 +
["red"] = "R",
 +
["orange"] = "O",
 +
["circular"] = "C"
 
}
 
}
 
}
 
}
 +
 +
return p

Latest revision as of 12:39, 26 September 2020

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
		["Lizihnei"] = x,
		["Kaisyuan Rueitian"] = x,
		["Cianjhen Star"] = x,
		["Kaisyuan Jhonghua"] = x,
		["Dream Mall"] = x,
		["Commerce and Trade Park"] = x,
		["Software Technology Park"] = x,
		["Kaohsiung Exhibition Center"] = x,
		["Cruise Terminal"] = x,
		["Glory Pier"] = x,
		["Love Pier"] = x,
		["Dayi Pier-2"] = x,
		["Penglai Pier-2"] = x,
		["Hamasen"] = 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"] = "Lizihnei",
			["right terminus"] = "Hamasen"
		}
	},
	["aliases"] = {
		["red"] = "R",
		["orange"] = "O",
		["circular"] = "C"
	}
}

return p