This is a data module for Module:Adjacent stations. It supports services operated by Incheon Subway.
Lines
editLine | Keys | Color | Hex color | Icon |
---|---|---|---|---|
Incheon Line 1 | 1 |
8cadcb |
| |
Incheon Line 2 | 2 |
f06a00 |
| |
Incheon Line 3 | 3 |
777777 |
|
local incheon = "%1 station (Incheon)"
local n = "font-size: 160%; font-family:sans-serif; font-weight: bolder; color: #FFFFFF; padding: 0.4em 4px; background-color: #"
local colors = {
["1"] = "8cadcb",
["2"] = "f06a00",
["3"] = "777777",
}
local p = {
["system title"] = "[[Incheon Subway]]",
["system icon"] = "",
["name format"] = {
["1"] = n .. colors["1"],
["2"] = n .. colors["2"],
["3"] = n .. colors["3"],
},
["header background color"] = colors,
["header text color"] = "ffffff",
["station format"] = {
"%1 station",
["Arts Center"] = incheon,
["Central Park"] = incheon,
["Gyeongin National University of Education"] = "[[Gyeongin National University of Education station|Gyeongin Nat'l Univ. of Education]]",
["Mansu"] = incheon,
["Seongnam"] = incheon,
},
["lines"] = {
["1"] = {
["title"] = "[[Incheon Subway Line 1|Incheon Line 1]]",
["color"] = colors["1"],
["text color"] = "FFFFFF",
["icon"] = "[[File:Incheon Metro Line 1.svg|16px|link=Incheon Subway Line 1]]",
["left terminus"] = "Gyeyang",
["right terminus"] = "Songdo Moonlight Festival Park",
},
["2"] = {
["title"] = "[[Incheon Subway Line 2|Incheon Line 2]]",
["color"] = colors["2"],
["text color"] = "FFFFFF",
["icon"] = "[[File:Incheon Metro Line 2.svg|16px|link=Incheon Subway Line 2]]",
["left terminus"] = "Geomdan Oryu",
["right terminus"] = "Unyeon",
},
["3"] = {
["title"] = "[[Incheon Subway Line 3|Incheon Line 3]]",
["color"] = colors["3"],
["text color"] = "FFFFFF",
}
}
}
return p