Jump to content

Module:Road data/strings/USA/IL

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Fredddie (talk | contribs) at 00:02, 12 February 2021 (cleanup). 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"]`.
]==]

-- Illinois
local IL = {}

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

local suffix = " ([dab||%dab%, |]Illinois)"
local maint = "[[Illinois Department of Transportation|IDOT]]"

IL[" common "] = {
	browse = {
		{link = "Illinois State Highway System", bold = true},
		{
			noprint = true,
			{link = "List of Interstate Highways in Illinois", name = "Interstate"},
			{link = "List of U.S. Highways in Illinois", name = "U.S."},
			{link = "List of state routes in Illinois", name = "State"},
			{link = "Illinois State Toll Highway Authority", name = "Tollways"}
		}
	}
}

IL.I.maint = maint
IL.I.link = {	["39"] = "Interstate 39",
                ["41"] = "Interstate 41",
                ["44"] = "Interstate 44 in Missouri",
                ["72"] = "Interstate 72",
                ["88"] = "Interstate 88 (Illinois)",
                ["172"] = "Interstate 172",
                ["255"] = "Interstate 255",
                ["270"] = "Interstate 270 (Missouri–Illinois)",
                ["280"] = "Interstate 280 (Iowa–Illinois)",
                ["294"] = "Interstate 294",
                ["355"] = "Interstate 355",
                ["474"] = "Interstate 474",
                default = {hook = "split",
                           split = 100,
                           above = "Interstate %route% (Illinois)",
                           below = "Interstate %route% in Illinois"}}

IL.BL.link = IL.I.base .. " Business" .. suffix
IL["I-Bus"]=IL.BL

IL["I-Toll"] = {shield = IL.I.shield,
				link = IL.I.link,
				abbr = IL.I.abbr,
				banner = "Toll plate yellow.svg",
				width = "expand"}

IL["I 1957"].link = IL.I.link
IL["I 1961"].link = IL.I.link           

IL.US.maint = maint
IL.US.link = "U.S. Route %route% in Illinois"

IL["US-Bus"].link = IL.US.base .. " Business" .. suffix
IL["US-Byp"].link = IL.US.base .. " Bypass" .. suffix
IL["US-Truck"].link = IL.US.base .. " Truck" .. suffix

IL["US 1926"].shieldmain = "US %route% Illinois 1926.svg"
IL["US 1926"].link = IL.US.link
IL["US 1948"].shieldmain = "US %route% Illinois 1948.svg"
IL["US 1948"].link = IL.US.link

IL["US-City"] = {	shield = IL.US.shield,
					name = "City " .. IL.US.name,
					link = "U.S. Route %route% City ([dab||%dab%, |]Illinois)",
					abbr = "US&nbsp;%route% City",
					banner = "City plate.svg",
					width = "expand"}

IL["US-Hist"].link = IL.US.link

IL.IL = {	shield = "Illinois %route%.svg",
			name = "Illinois Route %route%",
			link = "Illinois Route %route%",
			abbr = "IL&nbsp;%route%",
			width = "expand"}

IL["IL-Truck"] = {	shield = IL.IL.shield,
					name = IL.IL.name .. " Truck",
					link = "Illinois Route %route% Truck ([dab||%dab%|])",
					abbr = IL.IL.abbr .. " Truck",
					banner = "Truck plate.svg",
					width = "expand"}

IL["IL-Toll"] = {	shield = IL.IL.shield,
					name = IL.IL.name,
					link = IL.IL.link,
					abbr = IL.IL.abbr,
					banner = "Toll plate yellow.svg",
					width = "expand"}

IL["IL 1926"] = {	shield = "Illinois %route% (1926).svg",
					name = IL.IL.name,
					link = IL.IL.link,
					abbr = IL.IL.abbr}

IL["IL 1950"] = {	shield = "Illinois %route% (1950).svg",
					name = IL.IL.name,
					link = IL.IL.link,
					abbr = IL.IL.abbr}

IL["IL 1960"] = {	shield = "Illinois %route% (1960).svg",
					name = IL.IL.name,
					link = IL.IL.link,
					abbr = IL.IL.abbr}

IL.Skyway = {	shield = "Chicago Skyway logo.svg",
				name = "Chicago Skyway",
				link = "Chicago Skyway",
				abbr = "Chicago Skyway",
				bannersuffix = "blue"}

IL.Lincoln = {	shield = "LincolnHighwayMarker.svg",
				name = "Lincoln Highway",
				link = "Lincoln Highway in Illinois",
				abbr = "Lincoln Highway",
				width = 14}

IL.National = {	shield = "National Road Sign cropped.JPG", --should be improved
				name = "National Road",
				link = "National Road",
				abbr = "Historic National Road"}

IL.LHT = {	shield = "Lincoln Heritage Trail.png",
			name = "Lincoln Heritage Trail",
			link = "Lincoln Heritage Trail",
			abbr = "Lincoln Heritage Trail [route||(%route%)|]"}

IL.MGR = {	shield = "",
			name = "Meeting of the Great Rivers Scenic Route",
			link = "Meeting of the Great Rivers Scenic Route",
			abbr = "Meeting of the Great Rivers"}

IL.IRR = {	shield = "",
			name = "Illinois River Road",
			link = "Illinois River Road",
			abbr = "Illinois River Road"}

IL.CR.link = "County Road %route% ([county||%county% County, |]Illinois)"

IL.CKC = {	shield = "Illinois 110.svg",
			name = "Chicago–Kansas City Expressway",
			link = "Chicago–Kansas City Expressway",
			abbr = "IL&nbsp;110 (CKC)",
			banner = "Chicago-Kansas City Expressway plate.svg",
			width = "square"}

IL.IA = {alias = {module = "USA/IA", type = "IA"}}
IL.IN = {alias = {module = "USA/IN", type = "IN"}}
IL.Toll = {alias = {module = "USA/IN", type = "Toll"}}
IL.KY = {alias = {module = "USA/KY", type = "KY"}}
IL.MO = {alias = {module = "USA/MO", type = "MO"}}
IL.WI = {alias = {module = "USA/WI", type = "WI"}}
IL['I-MO'] = {alias = {module = "USA/MO", type = "I"}}

return IL