View source for Module:WikidataCoord
From HandWiki
You do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
require('strict')
local getArgs = require('Module:Arguments').getArgs
local patterns = {
'(%d+)°(%d+)'([%d%.]+)"([NS]),%s*(%d+)°(%d+)'([%d%.]+)"([EW])', -- if the returned data looks like 55°13'12"N, 23°17'17"E
'(%d+)°(%d+)'([NS]),%s*(%d+)°(%d+)'([EW])', -- if the returned data looks like 54°24'N, 25°25'E
'(%d+)°(%d+)[′\']([%d%.]+)[″\"]([NS]),?%s*(%d+)°(%d+)[′\']([%d%.]+)[″\"]([EW])', -- when args[1] is a dms string that uses quotes or primes
'(%d+)°(%d+)[′\']([NS]),?%s*(%d+)°(%d+)[′\']([EW])', -- when args[1] is a dms string that uses quotes or primes, bit shorter format
'(%d+%.?%d*)°([NS]),?%s*(%d+%.?%d*)°([EW])', -- when args[1] is a decimal degrees string
}
local params = {'display', 'format', 'name', 'notes'}; -- {{coord}} template paramters
--[[--------------------------< I S _ S E T >------------------------------------------------------------------
Whether variable is set or not. A variable is set when it is not nil and not empty.
]]
000
1:0
Templates used on this page:
- Template:Code (view source)
- Template:High-use (view source)
- Template:Ombox (view source)
- Module:Arguments (view source)
- Module:High-use (view source)
- Module:Message box (view source)
- Module:Message box/configuration (view source)
- Module:No globals (view source)
- Module:Transclusion count (view source)
- Module:Transclusion count/data/W (view source)
- Module:WikidataCoord/doc (view source)
- Module:Yesno (view source)
Return to Module:WikidataCoord.