Módulu:Mapa de llocalización

De Wikipedia

La documentación pa esti módulu pue crease en Módulu:Mapa de llocalización/usu

require('Módulu:No globals')
 
local p = {}
 
local getArgs = require('Módulu:Argumentos').getArgs
 
local function round(n, decimals)
	local pow = 10^(decimals or 0)
	return math.floor(n * pow + 0.5) / pow
end
 
function p.getMapParams(map, frame)
	if not map then
		error('Tien d\'especificase\'l nome de la definición del mapa de llocalización que va usase', 2)
	end
	map = mw.text.trim(map)
	--local moduletitle = mw.title.new('Módulu:Mapa de llocalización/datos/' .. map)
	--mw.log('Nome ' .. 'Módulu:Mapa de llocalización/datos/' .. map)
	--if not moduletitle then
	--	mw.log('Nome non válidu ' .. 'Módulu:Mapa de llocalización/datos/' .. map)
	--	error('"' .. map .. '" nun ye un nome válido pa una definición de mapa de llocalización', 2)
	--elseif moduletitle.exists then
	--	local mapData = mw.loadData('Módulu:Mapa de llocalización/datos/' .. map)
	--	return function(name, params)
	--		if name == nil then
	--			return 'Módulu:Mapa de llocalización/datos/' .. map
	--		elseif mapData[name] == nil then
	--			return ''
	--		elseif params then
	--			return mw.message.newRawMessage(tostring(mapData[name]), unpack(params)):plain()
	--		else
	--			return mapData[name]
	--		end
	--	end
	--elseif mw.title.new('Plantía:Mapa de llocalización de ' .. map).exists then
	if mw.title.new('Plantía:Mapa de llocalización de ' .. map).exists then
		local cache = {}
		if type(frame) ~= 'table' or type(frame.expandTemplate) ~= 'function' then
			error('Tien de proporcionase l\'oxetu frame de la páxina si utiliza un mapa implementáu mediante una plantía')
		end
		return function(name, params)
			if params then
				return frame:expandTemplate{title = 'Plantía:Mapa de llocalización de ' .. map, args = { name, unpack(params) }}
			else
				if name == nil then
					return 'Plantía:Mapa de llocalización de ' .. map
				elseif cache[name] == nil then
					cache[name] = frame:expandTemplate{title = 'Plantía:Mapa de llocalización de ' .. map, args = { name }}
				end
				return cache[name]
			end
		end
	else
		error('Nun puede amosase la ubicación especificada porque nun esiste\'l Módulu:Mapa de llocalización/datos/' .. map .. ' ni la Plantía:Mapa de llocalización de ' .. map, 2)
	end
end
 
function p.data(frame, args, map)
	if not args then
		args = getArgs(frame, {frameOnly = true})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	local params = {}
	for k,v in ipairs(args) do
		if k > 2 then
			params[k-2] = v
		end
	end
	return map(args[2], #params ~= 0 and params)
end
 
local hemisphereMultipliers = {
	longitude = { W = -1, w = -1, O = -1, o = -1, E = 1, e = 1 },
	latitude = { S = -1, s = -1, N = 1, n = 1 }
}
 
local function decdeg(degrees, minutes, seconds, hemisphere, decimal, direction)
	if not degrees or degrees == '' then
		if not decimal or decimal == '' then
			return nil
		end
		local retval = tonumber(decimal)
		if not retval then
			error('El valor "' .. decimal .. '" dau en ' .. direction .. ' nun ye válidu', 2)
		end
		return retval
	end
	decimal = tonumber(degrees)
	if not decimal then
		error('El valor de graos "' .. degrees .. '" dau en ' .. direction .. ' nun ye válidu', 2)
	end
	if minutes  and minutes == '' then
		minutes = 0
	end
	if seconds  and seconds == '' then
		seconds = 0
	end
	
	if minutes  and not tonumber(minutes) then
		error('El valor de minutos "' .. minutes .. '" dau en ' .. direction .. ' nun ye válidu', 2)
	end
	if seconds  and not tonumber(seconds) then
		error('El valor de segundos "' .. seconds .. '" dau en ' .. direction .. ' nun ye válidu', 2)
	end
	decimal = decimal + (minutes or 0)/60 + (seconds or 0)/3600
	if hemisphere and hemisphere ~= '' then
		local multiplier = hemisphereMultipliers[direction][hemisphere]
		if not multiplier then
			error('L\'hemisferiu "' .. hemisphere .. '" dau en ' .. direction .. ' nun ye válidu', 2)
		end
		decimal = decimal * multiplier
	end
	return decimal
end
 
-- Efeutivamente facer removeBlanks false pal pie y mapLink, y true para tolo demás
-- Si useWikidata ta presente, pero en blancu, convirtilo en false en llugar de cero
-- p.top, p.bottom y sus interlocutores precisen utilizar esto

function p.valueFunc(key, value)
	if value then
		value = mw.text.trim(value)
	end
	if value ~= '' or key == 'pie' or key == 'caption' or key == 'maplink' or key == "enllaz_mapa" then
		return value
	elseif key == 'useWikidata' or key == "usar_wikidata"then
		return false
	end
end
 
local function getContainerImage(args, map)
	if (args.AlternativeMap and args.AlternativeMap ~= '') or (args.mapa_alternativo and args.mapa_alternativo ~= '') then
		return args.AlternativeMap or args.mapa_alternativo
	elseif args.tipo and args.tipo ~= '' and map(args.tipo) and  map(args.tipo) ~= '' then
		return map(args.tipo)
	elseif args.relief or args.relieve and map('image1') ~= '' then
		return map('image1')
	else
		return map('image')
	end
end
 
function p.top(frame, args, map)
	local alliniacion, borde, pie, anchor, enllazMapa, etiqueta, ImaxeSuperpuesta
	if not args then
		args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end

        -- Variable colos parámetros n\'inglés o n\'asturianu

	local width
	anchor = args.anchor or args.width
	alliniacion = args['alliniación'] or args.float
        pie = args.caption or args['pie']
        enllazMapa = args.enllaz_mapa or args.maplink 
        etiqueta = args.label or args.etiqueta
        borde = args.borde or args.border 
        ImaxeSuperpuesta = args.imaxe_superpuesta or args.overlay_image
	if not anchor or anchor == '' then
		width = round((args.default_width or 240) * (tonumber(map('defaultscale')) or 1))
	elseif mw.ustring.sub(anchor, -2) == 'px' then
		width = mw.ustring.sub(anchor, 1, -3)
	else
		width = anchor
	end
	
        
	local retval = alliniacion == 'center' and '<div class="center">' or ''
	
	if pie and pie ~= '' and pie ~= 'no' then
		retval = retval .. '<div class="noviewer thumb '
		if alliniacion == '"left"' or alliniacion == 'left' then
			retval = retval .. 'tleft'
		elseif alliniacion == '"center"' or alliniacion == 'center' or alliniacion == 'centrau' or alliniacion == '"none"' or alliniacion == 'none' then
			retval = retval .. 'tnone'
		else
			retval = retval .. 'tright'
		end
		retval = retval .. '"><div class="thumbinner" style="width:' .. (width + 2) .. 'px'
		
		if borde == 'none' then
			
			retval = retval .. ';border:none'
		elseif borde then
			retval = retval .. ';border-color:' .. borde
		end
		retval = retval .. '"><div style="position:relative;width:' .. width .. 'px' .. (borde ~= 'none' and ';border:1px solid lightgray">' or '">')
	else
		retval = retval .. '<div style="width:' .. width .. 'px;'
		if alliniacion == '"left"' or alliniacion == 'left' then
			retval = retval .. 'float:left;clear:left'
		elseif alliniacion == '"center"' or alliniacion == 'center' or alliniacion == 'centrau' then
			retval = retval .. 'float:none;clear:both;margin-left:auto;margin-right:auto'
		elseif alliniacion == '"none"' or args.float == 'none' then
			retval = retval .. 'float:none;clear:none'
		else
			retval = retval .. 'float:right;clear:right'
		end
		retval = retval .. '"><div style="width:' .. width .. 'px;padding:0"><div style="position:relative;width:' .. width .. 'px">'
	end
	local image = getContainerImage(args, map)
	retval = string.format(
		'%s[[Ficheru:%s|%spx|%s%s]]',
		retval,
		image,
		width,
		args.alt or ('alt=' .. (etiqueta or mw.title.getCurrentTitle().text) .. ' ubicada en ' .. map('name')),
		enllazMapa and ('|link=' .. enllazMapa) or ''
	)
	if args.overlay_image then
		return retval .. '<div style="position:absolute;top:0;left:0">[[Ficheru:' .. ImaxeSuperpuesta .. '|' .. width .. 'px]]</div>'
	else
		return retval
	end
end
 
function p.bottom(frame, args, map)
	local alliniacion, borde, pie, anchor, enllazMapa, etiqueta, pieNoDefinido
	if not args then
		args = getArgs(frame, {frameOnly = true, valueFunc = p.valueFunc})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
         -- Variable colos parámetros en inglés o asturianu

	local width
	anchor = args.anchor or args.width
	alliniacion = args['allineación'] or args.float
        pie = args.caption or args['pie']
        enllazMapa = args.enllaz_mapa or args.maplink 
        etiqueta =  args.etiqueta or args.label
        borde = args.borde or args.border
        pieNoDefinido = args.pie_no_definiu or args.caption_undefined 
	local retval = '</div>'
 
	if not pie then
		retval = retval .. '<div style="font-size:90%;padding-top:3px">'
		.. (( etiqueta or mw.title.getCurrentTitle().text) .. ' (' .. map('name') .. ')')
		.. '</div>'
	elseif pie == '' or pie == 'no' then
		retval = retval .. '<div style="font-size:90%;padding-top:3px"></div>'
	else 
		-- Creando un enllaz sin nengún testu arré, pa que\'l CSS pueda danos una bona imaxe
		retval = retval .. '<div class="thumbcaption"><div class="magnify">[[:Ficheru:' .. getContainerImage(args, map) .. '| ]]</div>' .. pie .. '</div>'
	end
 
	retval = retval .. '</div></div>'
	retval = retval .. (alliniacion == 'center' and '</div>' or '')
	if pieNoDefinido then
		mw.log('parámetru pie_no_definiu eliminau')
		local parent = frame:getParent()
		if parent then
			mw.log('El padre ye ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		retval = retval .. '[[Categoría:Wikipedia:Mapes de llocalización con parámetru elimináu na llamada]]'
	end
	return retval
end
 
local function markOuterDiv(x, y, imageDiv, labelDiv)
	return mw.html.create('div')
		:cssText('position:absolute;top:' .. round(y, 3) .. '%;left:' .. round(x, 3) .. '%;height:0;width:0;margin:0;padding:0')
		:node(imageDiv)
		:node(labelDiv)
end
 
local function markImageDiv(mark, marksize, label, link, alt, title)
	local builder = mw.html.create('div')
		:cssText('position:absolute;text-align:center;left:-' .. round(marksize / 2) .. 'px;top:-' .. round(marksize / 2) .. 'px;width:' .. marksize .. 'px;font-size:' .. marksize .. 'px;line-height:0')
		:attr('title', title)
	if marksize ~= 0 then
		builder:wikitext(string.format(
			'[[Ficheru:%s|%dx%dpx|%s|link=%s%s]]',
			mark,
			marksize,
			marksize,
			label,
			link,
			alt and ('|alt=' .. alt) or ''
		))
	end
	return builder
end
 
local function markLabelDiv(label, label_size, label_width, position, background, x, marksize)
	local builder = mw.html.create('div')
		:cssText('font-size:' .. label_size .. '%;line-height:110%;position:absolute;width:' .. label_width .. 'em')
	local distance = round(marksize / 2 + 1)
	local spanCss
	if position == 'top' then -- specified top
		builder:cssText('bottom:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center')
	elseif position == 'bottom' then -- specified bottom
		builder:cssText('top:' .. distance .. 'px;left:' .. (-label_width / 2) .. 'em;text-align:center')
	elseif position == 'left' or (tonumber(x) > 70 and position ~= 'right') then -- specified left or autodetected to left
		builder:cssText('top:-0.75em;right:' .. distance .. 'px;text-align:right')
		spanCss = 'float:right'
	else -- specified right or autodetected to right
		builder:cssText('top:-0.75em;left:' .. distance .. 'px;text-align:left')
		spanCss = 'float:left'
	end
	builder = builder:tag('span')
		:cssText('padding:1px')
		:cssText(spanCss)
		:wikitext(label)
	if background then
		builder:cssText('background-color:' .. background)
	end
	return builder:done()
end
 
local function getX(longitude, left, right)
	local width = (tonumber(right) - tonumber(left)) % 360
	if width == 0 then
		width = 360
	end
	local distanceFromLeft = (longitude - left) % 360
	-- La distancia más allá de la derecha del mapa es igual a distanceFromLeft - anchor. 
	-- La distancia más allá de la izquierda del mapa es igual a 360 - distanceFromLeft. 
	-- para minimizar el estiramiento de la página  será de cualquier manera  más corta
	if distanceFromLeft - width / 2 >= 180 then
		distanceFromLeft = distanceFromLeft - 360
	end
	return 100 * distanceFromLeft / width
end
 
local function getY(latitude, top, bottom)
	return 100 * (top - latitude) / (top - bottom)
end
 
function p.mark(frame, args, map)
	if not args then
		args = getArgs(frame, {wrappers = 'Mapa de llocalización~'})
	end
	if not map then
		map = p.getMapParams(args[1], frame)
	end
	local x, y, longitude, latitude, fuera, wikidata, declaraciones
    fuera = args.fuera or args.outside
	longitude = decdeg(args.lon_deg or args.lon_gra, args.lon_min, args.lon_sec or args.lon_seg, args.lon_dir, args.long, 'longitude')
	latitude = decdeg(args.lat_deg or args.lat_gra, args.lat_min, args.lat_sec or args.lat_seg, args.lat_dir, args.lat, 'latitude')
	wikidata = args.usar_wikidata or args.useWikidata
	if not longitude and not latitude and wikidata then
		-- Si no se proporcionan coordenadas  se intentan obtener de Wikidata. 
		declaraciones = require('Módulu:Wikidata').getDeclaraciones(args['entidá'])
		if declaraciones and declaraciones.P625 and declaraciones.P625[1].mainsnak.snaktype == 'value' then
			local value = declaraciones.P625[1].mainsnak.datavalue.value
			longitude, latitude = value.longitude, value.latitude
		end
	end
	if not longitude then
		error('Nun se dio un valor a la llonxitú')
	end
	if not latitude then
		error('Nun se dio un valor a la llatitú')
	end
	local builder = mw.html.create()
	if args.skew or args.lon_shift or args.markhigh then
		mw.log('Eliminaos parámetros usaos na invocación.')
		local parent = frame:getParent()
		if parent then
			mw.log('El  padre ye ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		builder:wikitext('[[Categoría:Wikipedia:Mapes de llocalización con parámetru elimináu na llamada]]')
	end
	--if map('skew') ~= '' or map('lat_skew') ~= '' or map('crosses180') ~= '' then --or map('type') ~= '' then
	--	mw.log('Eliminaos parámetros usaos na definición del mapa ' .. map())
	--	builder:wikitext('[[Categoría:Wikipedia:Mapes de llocalización con parámetru elimináu na llamada]]')
	--end 
	if  map('x') and map('x') ~= '' and tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude }))) then
		mw.log('Esiste x -' .. map('x'))
		x = tonumber(mw.ext.ParserFunctions.expr(map('x', { latitude, longitude })))
	else
		mw.log('Nun esiste x')
		x = tonumber(getX(longitude, map('left'), map('right')))
	end
	if  map('y') and map('y') ~= '' and tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))  then
		mw.log('Existe y -' .. map('y'))
		y = tonumber(mw.ext.ParserFunctions.expr(map('y', { latitude, longitude })))
	else
		mw.log('Nun esiste y')
		y = tonumber(getY(latitude, map('top'), map('bottom')))
	end

	if (x < 0 or x > 100 or y < 0 or y > 100) and not fuera then
		mw.log('La llocalización ta fora de les llendes del mapa. x = ' .. x .. ', y = ' .. y)
		local parent = frame:getParent()
		if parent then
			mw.log('El padre ye ' .. parent:getTitle())
		end
		mw.logObject(args, 'args')
		builder:wikitext('[[Categoría:Wikipedia:Mapes de llocalización cola marca fora de les llendes]]')
	end
	local mark =  args.marca or args.mark or map('marca') or map('mark') 
	if mark == '' then
		mark = 'Red pog.svg'
	end
	local etiqueta = args.etiqueta or args.label
	local posicion = args['posición'] or args.position
	local marksize =  tonumber(args.marksize) or tonumber(args['tamañu_marca']) or tonumber(map('marksize')) or tonumber(map('tamañu_marca')) or 8
	local imageDiv = markImageDiv(mark, marksize, etiqueta or mw.title.getCurrentTitle().text, args.enllaz or args.link or '', args.alt, args[2])
	local labelDiv
	if etiqueta and posicion ~= 'none' then
		labelDiv = markLabelDiv(etiqueta, args['tamañu_etiqueta'] or args.label_size or 90, args['anchor_etiqueta'] or args.label_width or 6, args['posición'] or args.position, args['color_etiqueta'] or args.background, x, marksize)
	end
	return builder:node(markOuterDiv(x, y, imageDiv, labelDiv))
end
 
function p.main(frame, args, map)
	if not args then
		args = getArgs(frame, {wrappers = 'Plantía:Mapa de llocalización de ', valueFunc = p.valueFunc})
		mw.log('Nun se deteutaron args')
		if args[1] then
	   		mw.log('Nome ' .. args[1])
	    end
	end
	if not args[1] then
		args[1] = 'Tierra'
	end
	if args.useWikidata == nil and args.usar_wikidata == nil then
		args.useWikidata = true
	end
	if not map then
		map = p.getMapParams(tostring(args[1]), frame)
	end
	return p.top(frame, args, map) .. tostring( p.mark(frame, args, map) ) .. p.bottom(frame, args, map)
end
 
return p