Module:Mountain table cell: Difference between revisions
Appearance
Content deleted Content added
m update comment |
separate notes from references |
||
Line 12: | Line 12: | ||
local refs = {} |
local refs = {} |
||
local notes = {} |
|||
if args['hp'] then |
if args['hp'] then |
||
table.insert( |
table.insert(notes, {'X', 'The summit of ' .. n .. ' is the highest point of ' .. args['hp'] .. '.'}) |
||
end |
end |
||
if args['peak'] then |
if args['peak'] then |
||
table.insert( |
table.insert(notes, {'Y', n .. ' ' .. args['peak'] .. '.'}) |
||
end |
end |
||
if args['note'] then |
if args['note'] then |
||
table.insert( |
table.insert(notes, {'Z', args['note'] .. '.'}) |
||
end |
end |
||
if args['ngs'] then |
if args['ngs'] then |
||
Line 48: | Line 49: | ||
local vo = tonumber(args['vo']) |
local vo = tonumber(args['vo']) |
||
vo = (vo > 0 and '+' or '') .. ' m (' .. rnd(vo / 0.3048, 1) .. ' ft)' |
vo = (vo > 0 and '+' or '') .. ' m (' .. rnd(vo / 0.3048, 1) .. ' ft)' |
||
table.insert( |
table.insert(notes, {'G', 'The summit elevation of ' .. n .. ' includes a vertical offset of ' .. vo .. ' from the station benchmark.'}) |
||
end |
end |
||
if args['va'] then |
if args['va'] then |
||
Line 54: | Line 55: | ||
local va = tonumber(args['va']) |
local va = tonumber(args['va']) |
||
va = (va > 0 and '+' or '') .. ' m (' .. rnd(va / 0.3048, 2) .. ' ft)' |
va = (va > 0 and '+' or '') .. ' m (' .. rnd(va / 0.3048, 2) .. ' ft)' |
||
table.insert( |
table.insert(notes, {'H', 'The elevation of ' .. n .. ' includes an adjustment of ' .. va .. ' from [[NGVD 29|NGVD 29]] to [[NAVD 88|NAVD 88]].'}) |
||
end |
end |
||
if args['pb'] and args['nor'] == nil then |
if args['pb'] and args['nor'] == nil then |
||
Line 82: | Line 83: | ||
for i, r in ipairs(refs) do |
for i, r in ipairs(refs) do |
||
res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1]}) |
res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1]}) |
||
end |
|||
for i, r in ipairs(notes) do |
|||
res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1], group='lower-alpha'}) |
|||
end |
end |
||
if args['alt'] then |
if args['alt'] then |
Revision as of 22:13, 8 January 2020
Implements {{Mountain table cell}}
-- This module implements [[Template:Mountain table cell]]
local p = {}
function p.row(frame)
local getArgs = require('Module:Arguments').getArgs
local args = getArgs(frame)
local res = '|'
if args[1] then
local n = args['name'] and '[[' .. args[1] .. '|' .. args['name'] .. ']]' or '[[' .. args[1] .. ']]'
res = res .. n
local refs = {}
local notes = {}
if args['hp'] then
table.insert(notes, {'X', 'The summit of ' .. n .. ' is the highest point of ' .. args['hp'] .. '.'})
end
if args['peak'] then
table.insert(notes, {'Y', n .. ' ' .. args['peak'] .. '.'})
end
if args['note'] then
table.insert(notes, {'Z', args['note'] .. '.'})
end
if args['ngs'] then
local r = frame:expandTemplate{ title = 'cite web', args = {
title = args['stn'] or args['name'] or args[1],
url = 'http://www.ngs.noaa.gov/cgi-bin/ds_mark.prl?PidBox=' .. args['ngs'],
work = 'Datasheet for NGS Station ' .. args['ngs'],
publisher = '[[U.S. National Geodetic Survey]]',
accessdate = args['date']} }
table.insert(refs, {'D', r})
end
if args['gnis'] then
local r = frame:expandTemplate{ title = 'cite gnis',
args = {name = args['name'] or args[1], id = args['gnis']} }
table.insert(refs, {'E', r})
end
if args['nrc'] then
local r = frame:expandTemplate{ title = 'cite web', args = {
title = args['name'] or args[1],
url = 'http://www4.rncan.gc.ca/search-place-names/unique?id=' .. args['nrc'],
work = 'Geographical Names of Canada',
publisher = '[[Natural Resources Canada]]',
accessdate = args['date']} }
table.insert(refs, {'F', r})
end
if args['vo'] then
local rnd = require('Module:Math')._round
local vo = tonumber(args['vo'])
vo = (vo > 0 and '+' or '') .. ' m (' .. rnd(vo / 0.3048, 1) .. ' ft)'
table.insert(notes, {'G', 'The summit elevation of ' .. n .. ' includes a vertical offset of ' .. vo .. ' from the station benchmark.'})
end
if args['va'] then
local rnd = require('Module:Math')._round
local va = tonumber(args['va'])
va = (va > 0 and '+' or '') .. ' m (' .. rnd(va / 0.3048, 2) .. ' ft)'
table.insert(notes, {'H', 'The elevation of ' .. n .. ' includes an adjustment of ' .. va .. ' from [[NGVD 29|NGVD 29]] to [[NAVD 88|NAVD 88]].'})
end
if args['pb'] and args['nor'] == nil then
local r = frame:expandTemplate{ title = 'cite web', args = {
title = args['name'] or args[1],
url = 'http://www.peakbagger.com/peak.aspx?pid=' .. args['pb'],
website = 'Peakbagger.com',
accessdate = args['date'] } }
table.insert(refs, {'I', r})
end
if args['cme'] and args['nor'] == nil then
local r = frame:expandTemplate{ title = 'cite web', args = {
title = args['name'] or args[1],
url = 'http://www.bivouac.com/MtnPg.asp?MtnId=' .. args['cme'],
website = 'Bivouac.com',
accessdate = args['date'] } }
table.insert(refs, {'J', r})
end
if args['pw'] and args['nor'] == nil then
local r = frame:expandTemplate{ title = 'cite web', args = {
title = args['name'] or args[1],
url = 'http://www.peakware.com/peaks.html?pk=' .. args['pw'],
website = 'Peakware.com',
accessdate = args['date'] } }
table.insert(refs, {'K', r})
end
for i, r in ipairs(refs) do
res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1]})
end
for i, r in ipairs(notes) do
res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1], group='lower-alpha'})
end
if args['alt'] then
res = res .. '<br/>' .. '([[' .. args[1] .. '|' .. args['alt'] .. ']])'
end
end
return res
end
return p