local mWikidata = require('Modulo:Wikidata')
local p = {}
function p.prova()
local wdLat = mWikidata._getProperty({ 'P625', coord = 'latitude', n = 1, from = 'Q16148410' })
local wdLong = mWikidata._getProperty({ 'P625', coord = 'longitude', n = 1, from = 'Q16148410' })
if wdLat then
return 'latitudine uguale a' .. wdLat
elseif wdLong then
return 'longitudine uguale a' .. wdLong
else
return 'errore'
end
end
return p