Module:Infobox/Fonctions/Localité/Bac à sable
Apparence
[voir] [modifier] [historique] [purger]
Cette page définit un module d'infobox.
La documentation de ce module est générée par le modèle {{Documentation module}}.
Elle est incluse depuis la page Modèle:Documentation module d'infobox. Veuillez placer les catégories sur cette page-là.
Les éditeurs peuvent travailler dans le bac à sable (modifier).
Voir les statistiques d'appel depuis le wikicode sur l'outil wstat et les appels depuis d'autres modules.
-- Functions utilisées par le module:Infobox/Localité
local l = {}
local wikidata = require "Module:Interface Wikidata".fromLua
local general = require "Module:Infobox/Fonctions"
local datemodule = require "Module:Date"
local linguistic = require "Module:Linguistique"
function l.mainimage()
local defaultimage = 'Defaut 2.svg' -- demande d'illustration si pas d'illustration
return general.mainimage('Subdivision administrative illustrée par defaut.svg', defaultimage)
end
function l.population()
local title = 'population'
local rows
if localdata['population'] then
return {type = 'row', label = title, value = 'population'}
end
local statements = wikidata.getClaims{entity =item, property= 'P1082', rank = 'best', conjtype= ' ou ', sorttype = inverted, numval = 1}
if not statements then
return nil
end
local text = ''
for i, statement in pairs(statements) do
local mainstr = wikidata.formatStatement(statement, {showqualifiers = {}})
text = text .. mainstr .. ' hab.'
local annee = wikidata.getFormattedQualifiers(statement, {'P585'})
if annee then
text = text .. ' (en ' .. annee .. ')'
end
text = text .. '<br />'
end
return {type = 'row', label = 'Population', value = function() return text end}
end
return l