« Module:Infobox/Fonctions/Géolocalisation » : différence entre les versions

De Lagny-sur-Marne Wiki
Aller à la navigation Aller à la recherche
0x010D (discussion | contributions)
évite les coordonnées en titre pour les infobox secondaires
0x010D (discussion | contributions)
Aucun résumé des modifications
Ligne 44 : Ligne 44 :
end
end


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



Version du 7 janvier 2015 à 23:37

local coord = require('Module:Coordinates') local wikidatamod = require('Module:Wikidata') local p = {}


local p = {} function p.country(country, label, flagdate, size) -- à faire : gestion des dates, mapping Wikidata/modèles, peut-être mettre une partie de la fonction dans un module séparé return function(localdata, item) if localdata['pays'] then -- priorité aux données locales country = localdata['pays'] end if not country then -- si le pays n'est ni sur la page ni dans le module d'infobox, essayer wikidata country = wikidatamod.formatStatements({item=item, property = 'P17'}) end if not country then return nil end local countrydata = require('Module:Country data')[mw.ustring.lower(country)] or {}

if countrydata['alias'] then country = '[[' .. countrydata['alias'] .. ']]' end

if not label then label = 'Pays' end if not size then size = '22x20' end

local flag = countrydata['flag alias'] if flag then flag = '' .. size .. 'px' .. '' else flag = end local val = flag .. ' ' .. country return { type = 'mixed', label = label, value = function() return val end, } end end

local function coordcore(moduleparams) local globe = moduleparams.globe local displayinline = moduleparams.displayinline local displaytitle = moduleparams.displaytitle local displayformat = moduleparams.displayformat if (not displaytitle and not distantitem) then displaytitle = 'title' end -- displayinline et displaytitle sont des chaînes à utiliser dans le paramètre "display" de coord --distantitem veut dire que le sujet de l'infobox ne correspond pas au sujet de l'article 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' and not (localdata['coordonnées'] == 'oui') then return nil 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' or localdata['coords en titre'] == '-' then displaytitle = end if localdata['coords en en ligne'] == 'oui' then displayinline = 'inline' end if localdata['coords en en ligne'] == 'non' or localdata['coords en en ligne'] == '-' then displayinline = end local displayplace = displaytitle .. ',' .. displayinline local latitude = localdata['latitude'] local longitude = localdata['longitude'] if localdata['globe'] then globe = localdata['globe'] end 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 coord._coord({latitude = latitude, longitude = longitude, displayformat = displayformat, display= displayplace, globe = globe, wikidata =wikidata})
	end
	end

end function p.coordinates(moduleparams) -- initialise les paramètres avec les valeurs du module d'infobox (moduleparams) if not moduleparams then moduleparams = {} end return { type = 'mixed', label = 'Coordonnées', maintenancecat = 'Page géolocalisable sans coordonnées paramétrées', sortkey = sortkey,

		value = coordcore(moduleparams)
		}	

end

function p.geoloc(maplist) return { type = 'map', latitude = 'latitude', class = "infobox_v3", longitude = 'longitude', wikidata = function(localdata, item) return wikidatamod.getClaims{item = item, property = 'P625'} end, maps = function(localdata, item) local str if localdata['géolocalisation'] then str = localdata['géolocalisation'] elseif maplist then str = maplist end if str then return mw.text.split( str, '/', true) end end

    }

end return p