Module:Infobox road/route

< Module:Infobox road
Revision as of 17:43, 14 January 2022 by Wikipedia>Fredddie (Restored revision 1064200086 by Fredddie (talk): Rm)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This module pulls data from road data strings, such as Module:Road data/strings/USA, and passes it through three functions that draw the necessary route marker images and displays the route name in {{Infobox road}}.

Output examples
Description Output Output (sandbox)
Florida Both Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
No parameters Script error: No such module "Infobox road/route/sandbox".
Only |marker_image= Script error: No such module "Infobox road/route/sandbox".
Florida |marker_image=none

State Road A1A

Script error: No such module "Infobox road/route/sandbox".
Only |name=

Autoroute 10

Script error: No such module "Infobox road/route/sandbox".
Australia Script error: No such module "Infobox road/route/sandbox".
New Zealand Script error: No such module "Infobox road/route/sandbox".
Interstate |name= Script error: No such module "Infobox road/route/sandbox".
Interstate (Infobox road small) Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
France Script error: No such module "Infobox road/route/sandbox".
UK Script error: No such module "Infobox road/route/sandbox".
Brazil Script error: No such module "Infobox road/route/sandbox".
Chile Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
BC Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Saskatchewan Script error: No such module "Infobox road/route/sandbox".
Quebec Script error: No such module "Infobox road/route/sandbox".
Ontario Script error: No such module "Infobox road/route/sandbox".
ON Secondary Script error: No such module "Infobox road/route/sandbox".
ON Tertiary Script error: No such module "Infobox road/route/sandbox".
NWT

File:NWT-10.svg

Inuvik–Tuktoyaktuk Highway

Script error: No such module "Infobox road/route/sandbox".
Manitoba

Provincial Trunk Highway 3

Script error: No such module "Infobox road/route/sandbox".
Tennessee Dual Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
DE/MD Dual Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Puerto Rico type=PR Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Puerto Rico type=Urban Script error: No such module "Infobox road/route/sandbox".
Wisconsin Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
North Carolina Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Nevada BLSR Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Utah BLSR Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Texas Both Lua error at line 66: attempt to compare two nil values. Script error: No such module "Infobox road/route/sandbox".
Texas tollway Script error: No such module "Infobox road/route/sandbox".
1926 USH Script error: No such module "Infobox road/route/sandbox".
1948 USH Script error: No such module "Infobox road/route/sandbox".
Special route Script error: No such module "Infobox road/route/sandbox".
Special route (style=small) Script error: No such module "Infobox road/route/sandbox".
Alaska |marker_image= Script error: No such module "Infobox road/route/sandbox".
DC

File:DC-295.svg

District of Columbia Route 295

Script error: No such module "Infobox road/route/sandbox".
Mexico Script error: No such module "Infobox road/route/sandbox".
Sonora Script error: No such module "Infobox road/route/sandbox".
GRR

File:GreatRiverRoad.svg

Great River Road

Script error: No such module "Infobox road/route/sandbox".
Tour

File:Lake Michigan Circle Tour.svg

Lake Michigan Circle Tour

Script error: No such module "Infobox road/route/sandbox".
Turnpike Script error: No such module "Infobox road/route/sandbox".
County road Script error: No such module "Infobox road/route/sandbox".
Parish road Script error: No such module "Infobox road/route/sandbox".
CSAH

File:Hennepin County 81.svg

County State-Aid Highway 81

Script error: No such module "Infobox road/route/sandbox".
Secondary

File:MT-sec-206.svg

Secondary Highway 206

Script error: No such module "Infobox road/route/sandbox".
Supplemental Script error: No such module "Infobox road/route/sandbox".
Oregon

File:OR 35.svg

Oregon Route 35

Script error: No such module "Infobox road/route/sandbox".
Oregon Highway

John Day Highway No. 5

Script error: No such module "Infobox road/route/sandbox".
Belgium

File:BE-N1.svg

National Route 1

Script error: No such module "Infobox road/route/sandbox".
Belgium Script error: No such module "Infobox road/route/sandbox".

local p = {} 

local format = mw.ustring.format
require('Module:No globals')
local getArgs = require('Module:Arguments').getArgs	
local parserModule = require 'Module:Road data/parser'
local parser = parserModule.parser

local function banner(args, style)
	if args.marker_image then return nil end
	
	local bannerSize
		if style == 'small' then
			bannerSize = "40px"
		else
			bannerSize = "70px"
		end
	
	local shield = parser(args, 'banner')
	local alt = parser(args, 'banner')

	if not shield or shield == '' then
		return nil
	else
		return string.format('[[File:%s|%s|alt=%s]]', shield, bannerSize, alt)
	end
end



local function shield(args, style)

	if args.marker_image then return args.marker_image end
	
	local horizontalSize
	local verticalSize
		if style == 'small' then
			horizontalSize = "90x40px"
			verticalSize = "40x90px"
		else
			horizontalSize = "150x70px"
			verticalSize = "70x150px"
		end

	local shield = parser(args, 'shieldmain') or parser(args, 'shield') or ''
	
	local label = parser(args, 'name') or parser(args, 'abbr') or ''
	local alt = label .. ' marker'
	local orientation = parser(args, 'orientation')
	
	local function simpleSize(args)
		if orientation and orientation == 'upright' then
			return verticalSize
		else
			return horizontalSize
		end
	end
	
	local function shield_size(image_name, orientation)
		local image = 'File:' .. image_name
		local title = mw.title.new(image)

		local width = title.file.width
		local height = title.file.height
		
		if (orientation and orientation == 'upright') or height > width then
			return verticalSize
		else
			return horizontalSize
		end
	end
	
	
	
	if not shield or shield == '' then
		return nil
	elseif type(shield) == 'table' then
		local res = {}
		local sizes = {}
		for i,v in ipairs(shield) do
			sizes[i] = v
			res[i] = string.format('[[File:%s|%s|alt=%s]]', v, shield_size(v), alt)
		end
    	return table.concat(res, ' ')
	else
		return string.format('[[File:%s|%s|alt=%s]]', shield, simpleSize(args), alt)
	end
end

-- Links/abbreviations
local function name(args)
	local name = args.name or parser(args, 'name') or parser(args, 'abbr')
	return name
end

function p._routeInfo(args)
	
	local style = args.style
	local banner = banner(args, style)
	local shield = shield(args, style)
	local name = name(args)

	if not args.type and not args.route and not args.name and not args.marker_image then
		local container = nil
	else local container = mw.html.create('div'):cssText('text-align:center;')
		if shield == nil or args.marker_image == 'none' or args.name and not args.marker_image and not args.type and not args.route then 
			container:tag('p'):cssText('margin:0.1em;'):wikitext(name)
		elseif args.marker_image ~= '' and args.name == '' or args.name == nil and not args.type and not args.route then
			container:tag('p'):cssText('margin:0.1em;'):wikitext(shield)
		elseif args.country == 'AUS' then
			container:tag('p'):cssText('margin:0.1em;'):wikitext(name)
			container:tag('p'):cssText('margin:0.1em 0 0 0;'):wikitext(shield)
		else
			container:tag('p'):cssText('margin:0.1em 0 0 0;'):wikitext(banner)
			container:tag('p'):cssText('margin:0 0 0.1em;'):wikitext(shield)
			container:tag('p'):cssText('margin:0.1em;'):wikitext(name)
		end
		return tostring(container)
	end
end

function p.routeInfo(frame)
	local args = getArgs(frame)
	return p._routeInfo(args);
end

return p