Module:Road data/strings/USA/AK

This is an old revision of this page, as edited by Fredddie (talk | contribs) at 22:26, 10 February 2021 (ope). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--[==[
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"]`.
]==]

-- Alaska
local AK = {}

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

local suffix = " ([dab||%dab%, |]Alaska)"
local maint = "[[Alaska Department of Transportation & Public Facilities|Alaska DOT&PF]]"

AK.I.shield = "I-A%route%.svg"
AK.I.link = "Interstate A-%route%"
AK.I.name = "Interstate A-%route%"
AK.I.abbr = "A-%route%"

AK.US.link = "U.S. Route %route% in Alaska"

--Do not add USH special routes

AK.USBR = {alias = {module = "USA", type = "USBR"}}

AK.AK = {shield = "Alaska %route% shield.svg",
		 name = "Alaska Route %route%",
         link = "Alaska Route %route%",
         abbr = "AK-%route%"}
         
AK.Highway = {	shield = "",
				link = {default = "%route% Highway [dab||(%dab%)|]",
						["Chena Hot Springs"] = "%route% Road",
						["Denali Park"] = "%route% Road",
						Egan = "%route% Drive",
						Johansen = "%route% Expressway",
						McCarthy = "%route% Road",
						["Minnesota Drive"] = "%route% Expressway",
						["Salmon River"] = "%route% Road",
						Tok = "%route% Cut-Off"},
				abbr = {default = "%route% Highway",
						["Chena Hot Springs"] = "%route% Road",
						["Denali Park"] = "%route% Road",
						Egan = "%route% Drive",
						Johansen = "%route% Expressway",
						McCarthy = "%route% Road",
						["Minnesota Drive"] = "%route% Expressway",
						["Salmon River"] = "%route% Road",
						Tok = "%route% Cut-Off"}
					}

AK.Hwy = AK.Highway

return AK