1,406 bytes added
, 05:45, 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"]`.
]==]
-- Norway
local NOR = {}
local util = require("Module:Road data/util")
util.addAll(NOR, require("Module:Road data/strings/EUR"))
NOR.E.shield = "Stamvei E%route%.svg"
NOR.E.color = "EUR-NOR"
NOR.Europavei = NOR.E
NOR.europavei = NOR.E
NOR.Fv = {
shield = "Fylkesvei %route%.svg",
link = "Norwegian County Road %route% [dab||(%dab%)|]",
abbr = "Fv%route%"
}
NOR.fv = NOR.Fv
NOR.Fylkesvei = NOR.Fv
NOR.fylkesvei = NOR.Fv
NOR.Rv = {
shield = "Riksvei %route%.svg",
link = "Norwegian National Road %route% [dab||(%dab%)|]",
abbr = "Rv%route%"
}
NOR.rv = NOR.Rv
NOR.Riksvei = NOR.Rv
NOR.riksvei = NOR.Rv
NOR.National = NOR.Rv
NOR.Sv = {
shield = NOR.Rv.shield,
link = NOR.Rv.link,
abbr = "Stamvei %route%"
}
NOR.sv = NOR.Sv
NOR.Stamvei = NOR.Sv
NOR.stamvei = NOR.Sv
NOR.Ring = {
shield = "Vei Ring%route%.svg",
link = "Ring %route% [dab||(%dab%)|(Oslo)]",
abbr = "Ring %route%"
}
return NOR