Module:Wikidata/Formatters/globecoordinate
Εμφάνιση
Τεκμηρίωση module[δημιουργία] [ανανέωση]
--require "Module:No globals"
local p = {}
function p.getRawValue(value, options)
local lib = require 'Module:Wikidata/lib'
if not options.field then
return error(lib.formatError('param-not-provided', 'field'))
elseif options.field == 'latitude' or options.field == 'longitude' or options.field == 'precision' or options.field == 'globe' then
return value[options.field]
else
return error(lib.formatError('invalid-field', options.field))
end
end
function p.formatValue(value, options)
--local GlobeCoordinate = require 'Module:GlobeCoordinate'
--local _value = GlobeCoordinate.newFromWikidataValue(value)
local Coord = require 'Module:Souřadnice'
local args = {
value.latitude,
value.longitude,
}
setmetatable(args, { __index = options })
return Coord._renderCoordinates(args, mw.getCurrentFrame())
end
return p