Module:TestCoordinates

From Ikwipedia
Revision as of 19:25, 12 November 2024 by Poseidon (talk | contribs) (Created page with "local p = {} function p.testCoordinates() local frame = mw.getCurrentFrame() local args = { '33', '57', '01', 'N', '105', '18', '51', 'W', 'region:US-CA_type:event' } local coord_result = frame:callParserFunction('#coordinates', args) return coord_result or "Error: coordinates could not be processed" end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Documentation for this module may be created at Module:TestCoordinates/doc

local p = {}

function p.testCoordinates()
    local frame = mw.getCurrentFrame()
    local args = {
        '33', '57', '01', 'N',
        '105', '18', '51', 'W',
        'region:US-CA_type:event'
    }
    local coord_result = frame:callParserFunction('#coordinates', args)
    return coord_result or "Error: coordinates could not be processed"
end

return p