Module:Infobox/Fonctions/Géolocalisation : Différence entre versions

De Lagny-sur-Marne Wiki
Aller à : navigation, rechercher
(?)
m (petit nettoyage)
Ligne 2 : Ligne 2 :
 
local wikidatamod = require('Module:Wikidata')
 
local wikidatamod = require('Module:Wikidata')
 
local p = {}
 
local p = {}
function p.coordinates(params)
+
function p.coordinates(moduleparams)
if not params then params = {} end
+
-- initialise les paramètres avec les valeurs du module d'infobox (moduleparams)
 +
if not moduleparams then moduleparams = {} end
 +
local displayinline = moduleparams.displayinline
 +
local displaytitle = moduleparams.displaytitle
 +
local displayformat = moduleparams.displayformat
 +
if not displaytitle then displaytitle = 'title' end -- displayinline et displaytitle sont des chaînes à utiliser dans le paramètre "display" de coord
 +
if not displayinline then displayinline = 'inline' end
 +
 
 
return function(localdata, item)
 
return function(localdata, item)
if localdata["géolocalisation"] == 'pas pertinent' or localdata['géolocalisation'] == 'non' then
+
if not (localdata['coordonnées'] == 'oui') then
+
-- vérifie qu'il faut afficher les coordonnées
return nil
+
if localdata["géolocalisation"] == 'pas pertinent' or localdata['géolocalisation'] == 'non' then
end end
+
if not (localdata['coordonnées'] == 'oui') then
local displayformat = displaycoords
+
return nil
 
+
end end
local displaytitle = 'title'
+
if params['displaytitle'] == false then
+
-- si paramètres donnés dans l'article, écrasent les autres
displaytitle = ''
+
if localdata['format coordonnées'] then
end
+
displayformat = localdata['format coordonnées']
if localdata['coords en titre'] == 'non' then -- paramètre sur la page, domine les params du module
+
end
displaytitle = ''
+
if localdata['coords en titre'] == 'oui' then
end
+
local displaytitle = 'title'
 
+
end
local displayinline = 'inline'
+
if localdata['coords en titre'] == 'non' then
if params['displayinline'] == false then
+
local displaytitle = ''
displayinline = ''
+
end
end
+
if localdata['coords en en ligne'] == 'oui' then
if localdata[ 'coords en ligne'] == 'non' then
+
local displayinline = 'inline'
displayinline = ''
+
end
end
+
if localdata['coords en en ligne'] == 'non' then
 
+
local displayinline = ''
local displayplace = displaytitle .. ',' .. displayinline
+
end
local latitude = localdata['latitude']
+
local displayplace = displaytitle .. ',' .. displayinline
local longitude = localdata['longitude']
+
local latitude = localdata['latitude']
local globe = localdata['globe']
+
local longitude = localdata['longitude']
local wikidata = localdata['wikidata'] or 'true'
+
local globe = localdata['globe']
if displayinline == '' then return -- type: external text pour ne pas avoir de ligne vide en infobox
+
local wikidata = localdata['wikidata'] or 'true'
{
+
if displayinline == '' then
type = 'external text',
+
return -- type: external text pour ne pas avoir de ligne vide en infobox
maintenancecat = 'Page géolocalisable sans coordonnées paramétrées',
+
{
sortkey = sortkey,
+
type = 'external text',
value =
+
maintenancecat = 'Page géolocalisable sans coordonnées paramétrées',
function(localdata, item)
+
sortkey = sortkey,
return coord._coord({latitude = latitude, longitude = longitude, displayformat = displayformat, display= displayplace, globe = globe, wikidata =wikidata})
+
value =
 +
function(localdata, item)
 +
return coord._coord({latitude = latitude, longitude = longitude, displayformat = displayformat, display= displayplace, globe = globe, wikidata =wikidata})
 
  end
 
  end
}
+
}
else return
+
else return
 
  {
 
  {
 
type = 'mixed',
 
type = 'mixed',

Version du 24 septembre 2014 à 21:28

La documentation pour ce module peut être créée à Module:Infobox/Fonctions/Géolocalisation/doc

local coord = require('Module:Coordinates')
local wikidatamod = require('Module:Wikidata')
local p = {}
function p.coordinates(moduleparams)
	-- initialise les paramètres avec les valeurs du module d'infobox (moduleparams)
	if not moduleparams then moduleparams = {} end
	local displayinline = moduleparams.displayinline
	local displaytitle = moduleparams.displaytitle
	local displayformat = moduleparams.displayformat
	if not displaytitle then displaytitle = 'title' end -- displayinline et displaytitle sont des chaînes à utiliser dans le paramètre "display" de coord
	if not displayinline then displayinline = 'inline' end

	return function(localdata, item)
		
		-- vérifie qu'il faut afficher les coordonnées
		if localdata["géolocalisation"] == 'pas pertinent' or localdata['géolocalisation'] == 'non' then
			if not (localdata['coordonnées'] == 'oui') then
			return nil
		end end
		
		-- si paramètres donnés dans l'article, écrasent les autres
		if localdata['format coordonnées'] then
			displayformat = localdata['format coordonnées']
		end
		if localdata['coords en titre'] == 'oui' then
			local displaytitle = 'title'
		end
		if localdata['coords en titre'] == 'non' then
			local displaytitle = ''
		end
		if localdata['coords en en ligne'] == 'oui' then
			local displayinline = 'inline'
		end
		if localdata['coords en en ligne'] == 'non' then
			local displayinline = ''
		end	
		local displayplace = displaytitle .. ',' .. displayinline
		local latitude = localdata['latitude']
		local longitude = localdata['longitude']
		local globe = localdata['globe']
		local wikidata = localdata['wikidata'] or 'true'
		if displayinline == '' then
			return -- type: external text pour ne pas avoir de ligne vide en infobox
			{
			type = 'external text',
			maintenancecat = 'Page géolocalisable sans coordonnées paramétrées',
			sortkey = sortkey,
 			value =
 				function(localdata, item)
 					return coord._coord({latitude = latitude, longitude = longitude, displayformat = displayformat, display= displayplace, globe = globe, wikidata =wikidata})
 			end
 		}
 		else return
 			{
		type = 'mixed',
		label = 'Coordonnées',
		maintenancecat = 'Page géolocalisable sans coordonnées paramétrées',
		sortkey = sortkey,
 		value =
 			function(localdata, item)
 				return coord._coord({latitude = latitude, longitude = longitude, displayformat = displayformat, display= displayplace, globe = globe, wikidata =wikidata})
 			end
 		}	
	end end
end

function p.geoloc()
	return   {
		type = 'map',
		wikidata = function(localdata, item) return wikidatamod.getClaims{item = item, property = 'P625'} end,
		maps = function(localdata, item) if localdata['géolocalisation'] then return mw.text.split( localdata['géolocalisation'], '/', true ) end end
        }
 
end
return p