Changes

MyWikiBiz, Author Your Legacy — Thursday October 09, 2025
Jump to navigationJump to search
Pywikibot 6.4.0
--[==[
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"]`.
]==]

-- Northwest Territories
local NT = {}

local util = require("Module:Road data/util")
util.addAll(NT, require("Module:Road data/strings/CAN"))

NT.NT = {
shield = "NWT-%route%.svg",
name = {
["1"] = "Mackenzie Highway",
["2"] = "Hay River Highway",
["3"] = "Yellowknife Highway",
["4"] = "Ingraham Trail",
["5"] = "Fort Smith Highway",
["6"] = "Fort Resolution Highway",
["7"] = "Liard Highway",
["8"] = "Dempster Highway",
["10"] = "Inuvik–Tuktoyaktuk Highway",
default = "Highway %route%"
},
link = "Northwest Territories Highway %route%",
abbr = "Highway %route%",
orientation = "upright"
}
NT.NWT = NT.NT
NT.Hwy = NT.NT

return NT

Navigation menu