1,684 bytes added
, 05:43, 16 July 2021
--[==[
To inspect the content of this data module, use [[Special:ExpandTemplates]]
and enter the following input text:
{{#invoke:Road data/dump|dump|module=Module:<name-of-this-module>}}
To inspect the content of this data module when editing, enter the following
into the Debug console:
local util = require("Module:Road data/util")
print(util.arrayToString(p))
To inspect a particular route type, change `p` above to include the route type,
e.g., `p.I` and `p["US-Hist"]`.
]==]
-- Italy
local ITA = {}
local util = require("Module:Road data/util")
util.addAll(ITA, require("Module:Road data/strings/EUR"))
ITA.A.shield = {
default = "Autostrada A%route% Italia.svg",
["CT-SR"] = "Italian traffic signs - Autostrada CT-SR.svg"
}
ITA.A.name = "Autostrada A%route%"
ITA.A.link = "Autostrada A%route% (Italy[dab||, %dab%|])"
ITA.A.color = "EUR"
ITA.RA = {
shield = "Italian traffic signs - raccordo autostradale %route%.svg",
name = "Autostrada RA%route%",
link = "Autostrada RA%route% (Italy)",
abbr = "RA %route%",
color = "EUR"
}
ITA.SS = {
shield = {
default = "Strada Statale %route% Italia.svg",
["131dcn"] = "Strada Statale 131dir-centr Italia m.svg"
},
name = "Highway %route%",
link = "",
abbr = "SS %route%",
color = "MUTCDblue"
}
ITA.T = {
shield = "Traforo T%route% Italia.svg",
name = {
["1"] = "Mont Blanc Tunnel",
["2"] = "Great St Bernard Tunnel",
["3"] = "Bargagli-Ferriere Tunnel",
["4"] = "Fréjus Road Tunnel"
},
link = {
arg = "route",
["1"] = "Mont Blanc Tunnel",
["2"] = "Great St Bernard Tunnel",
["3"] = "Bargagli-Ferriere Tunnel",
["4"] = "Fréjus Road Tunnel"
},
abbr = "T %route%"
}
return ITA