1,270 bytes added
, 05:41, 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"]`.
]==]
-- New Brunswick
local NB = {}
local util = require("Module:Road data/util")
util.addAll(NB, require("Module:Road data/strings/CAN"))
-- Provincial types
NB.Route = {
shield = {
default = "NB %route%.svg",
["2"] = "NB %route% (TCH).svg",
["16"] = "NB %route% (TCH).svg"
},
name = "Route %route%",
link = "New Brunswick Route %route%",
abbr = "Route %route%"
}
NB.NB = NB.Route
NB.TCH = {
shield = "NB %route% (TCH).svg",
name = NB.Route.name,
link = NB.Route.link,
abbr = NB.Route.abbr.." (TCH)",
orientation = "upright"
}
NB.A = {alias = {module = "CAN/QC", type = "A"}}
NB.QC = {alias = {module = "CAN/QC", type = "QC"}}
-- American types
NB.I = {alias = {module = "USA/ME", type = "I"}}
NB.US = {alias = {module = "USA/ME", type = "US"}}
return NB