Module:Road data/strings/USA/DC

MyWikiBiz, Author Your Legacy — Sunday May 05, 2024
Jump to navigationJump to search

Documentation for this module may be created at Module:Road data/strings/USA/DC/doc

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

-- District of Columbia
local DC = {}

local util = require("Module:Road data/util")
util.addAll(DC, require("Module:Road data/strings/USA"))
local suffix = " (Washington, D.C.)"
local maint = "[[District of Columbia Department of Transportation|District of Columbia DOT]]"

DC.I.link = "Interstate %route% (District of Columbia)"

DC["I 1957"].link = DC.I.link
DC["I 1961"].link = DC.I.link
        
DC["I-Alt"].link = "Interstate %route% Alternate" .. suffix
                
DC.US.link = "U.S. Route %route% in the District of Columbia"
         
DC["US 1926"].shieldmain = "US %route% District of Columbia 1926.svg"
DC["US 1926"].link = DC.US.link
DC["US 1961"].shieldmain = "US %route% District of Columbia 1970.svg"
DC["US 1961"].link = DC.US.link
DC["US 1961"].link = DC.US.link
DC["US 1970"] = DC["US 1961"]
         
DC["US-Alt"].link = "U.S. Route %route% Alternate" .. suffix
DC["US-Byp"].link = "U.S. Route %route% Bypass" .. suffix
         
DC.DC = {
	shield = "DC-%route%.svg",
	name = "District of Columbia Route %route%",
	link = "District of Columbia Route %route%",
	abbr = "DC&nbsp;%route%",
}

DC["I-MD"] = {alias = {module = "USA/MD", type = "I"}}

return DC