Jump to content

Module:Road data/strings/USA/DC

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mxn (talk | contribs) at 08:12, 18 January 2021 (USBR). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--District of Columbia
local DC = {}

DC.I = {shield = "I-%route%.svg",
        link = "Interstate %route% (District of Columbia)",
        abbr = "I-%route%"}

DC["I 1961"] = {shield = "I-%route% (1961).svg",
         link = DC.I.link,
         abbr = DC.I.abbr}
         
DC["I 1957"] = {shield = "I-%route% (1957).svg",
         link = DC.I.link,
         abbr = DC.I.abbr}         
        
DC["I-Alt"] = {shield = DC.I.shield,
                link = "Interstate %route% Alternate (Washington, D.C.)",
                abbr = "I-%route% Alt.",
                banner = "Alt plate.svg",
                width = "expand"}
                
DC.US = {shield = "US %route%.svg",
         link = "U.S. Route %route% in the District of Columbia",
         abbr = "US %route%"}
         
DC["US 1961"] = {shield = "US %route% (1961).svg",
         link = DC.US.link,
         abbr = DC.US.abbr} 
         
DC["US 1948"] = {shield = "US %route% (1948).svg",
         link = DC.US.link,
         abbr = DC.US.abbr} 

DC["US 1926"] = {shield = "US %route% (1926).svg",
         link = DC.US.link,
         abbr = DC.US.abbr} 
         
DC["US-Alt"] = {shield = DC.US.shield,
                link = "U.S. Route %route% Alternate (Washington, D.C.)",
                abbr = "US %route% Alt.",
                banner = "Alt plate.svg",
                width = "expand"}

DC["US-Byp"] = {shield = DC.US.shield,
                link = "U.S. Route %route% Bypass (Washington, D.C.)",
                abbr = "US %route% Byp.",
                banner = "By-pass plate.svg",
                width = "expand"}
         
DC.DC = {shield = "DC-%route%.svg",
         link = "District of Columbia Route %route%",
         abbr = "DC %route%"}

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

DC.USBR = {
	shield = "US Bike %route% (M1-9).svg",
	link = "U.S. Bicycle Route %route%",
	abbr = "USBR %route%",
}

return DC