<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mywikibiz.com/index.php?action=history&amp;feed=atom&amp;title=Module%3AMountain_table_cell</id>
	<title>Module:Mountain table cell - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://mywikibiz.com/index.php?action=history&amp;feed=atom&amp;title=Module%3AMountain_table_cell"/>
	<link rel="alternate" type="text/html" href="https://mywikibiz.com/index.php?title=Module:Mountain_table_cell&amp;action=history"/>
	<updated>2026-06-22T06:30:15Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.3</generator>
	<entry>
		<id>https://mywikibiz.com/index.php?title=Module:Mountain_table_cell&amp;diff=478734&amp;oldid=prev</id>
		<title>Zoran: Pywikibot 6.4.0</title>
		<link rel="alternate" type="text/html" href="https://mywikibiz.com/index.php?title=Module:Mountain_table_cell&amp;diff=478734&amp;oldid=prev"/>
		<updated>2021-07-16T05:01:49Z</updated>

		<summary type="html">&lt;p&gt;Pywikibot 6.4.0&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- This module implements [[Template:Mountain table cell]]&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.row(frame)&lt;br /&gt;
	local getArgs = require('Module:Arguments').getArgs&lt;br /&gt;
	local args = getArgs(frame)&lt;br /&gt;
&lt;br /&gt;
	local res = '|'	&lt;br /&gt;
	if args[1] then&lt;br /&gt;
		local n = args['name'] and '[[' .. args[1] .. '|' .. args['name'] .. ']]' or '[[' .. args[1] .. ']]'&lt;br /&gt;
		res = res .. n&lt;br /&gt;
		&lt;br /&gt;
		local refs = {}&lt;br /&gt;
		local notes = {}&lt;br /&gt;
		if args['hp'] then&lt;br /&gt;
			table.insert(notes, {'X', 'The summit of ' .. n .. ' is the highest point of ' .. args['hp'] .. '.'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['peak'] then&lt;br /&gt;
			table.insert(notes, {'Y', n .. ' ' .. args['peak'] .. '.'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['note'] then&lt;br /&gt;
			table.insert(notes, {'Z', args['note'] .. '.'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['ngs'] then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite web', args = {&lt;br /&gt;
				title = args['stn'] or args['name'] or args[1],&lt;br /&gt;
				url = 'http://www.ngs.noaa.gov/cgi-bin/ds_mark.prl?PidBox=' .. args['ngs'],&lt;br /&gt;
				work = 'Datasheet for NGS Station ' .. args['ngs'],&lt;br /&gt;
				publisher = '[[U.S. National Geodetic Survey]]',&lt;br /&gt;
				accessdate = args['date']} }&lt;br /&gt;
			table.insert(refs, {'D', r})&lt;br /&gt;
		end&lt;br /&gt;
		if args['gnis'] then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite gnis', &lt;br /&gt;
				args = {name = args['name'] or args[1], id = args['gnis']} }&lt;br /&gt;
			table.insert(refs, {'E', r})&lt;br /&gt;
		end&lt;br /&gt;
		if args['nrc'] then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite web', args = {&lt;br /&gt;
				title = args['name'] or args[1],&lt;br /&gt;
				url = 'http://www4.rncan.gc.ca/search-place-names/unique?id=' .. args['nrc'],&lt;br /&gt;
				work = 'Geographical Names of Canada',&lt;br /&gt;
				publisher = '[[Natural Resources Canada]]',&lt;br /&gt;
				accessdate = args['date']} }&lt;br /&gt;
			table.insert(refs, {'F', r})&lt;br /&gt;
		end&lt;br /&gt;
		if args['vo'] then&lt;br /&gt;
			local rnd = require('Module:Math')._round&lt;br /&gt;
			local vo = tonumber(args['vo'])&lt;br /&gt;
			vo = (vo &amp;gt; 0 and '+' or '') .. vo .. '&amp;amp;nbsp;m (' .. rnd(vo / 0.3048, 1) .. '&amp;amp;nbsp;ft)'&lt;br /&gt;
			table.insert(notes, {'G', 'The summit elevation of ' .. n .. ' includes a vertical offset of ' .. vo .. ' from the station benchmark.'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['va'] then&lt;br /&gt;
			local rnd = require('Module:Math')._round&lt;br /&gt;
			local va = tonumber(args['va'])&lt;br /&gt;
			va = (va &amp;gt; 0 and '+' or '') .. va .. '&amp;amp;nbsp;m (' .. rnd(va / 0.3048, 2) .. '&amp;amp;nbsp;ft)'&lt;br /&gt;
			table.insert(notes, {'H', 'The elevation of ' .. n .. ' includes an adjustment of ' .. va .. ' from [[NGVD 29|NGVD&amp;amp;nbsp;29]] to [[NAVD 88|NAVD&amp;amp;nbsp;88]].'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['pb'] and args['nor'] == nil then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite web', args = {&lt;br /&gt;
				title = args['name'] or args[1],&lt;br /&gt;
				url = 'http://www.peakbagger.com/peak.aspx?pid=' .. args['pb'],&lt;br /&gt;
				website = 'Peakbagger.com',&lt;br /&gt;
				accessdate = args['date'] } }&lt;br /&gt;
			table.insert(refs, {'I', r})&lt;br /&gt;
		end&lt;br /&gt;
		if args['cme'] and args['nor'] == nil then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite web', args = {&lt;br /&gt;
				title = args['name'] or args[1],&lt;br /&gt;
				url = 'http://www.bivouac.com/MtnPg.asp?MtnId=' .. args['cme'],&lt;br /&gt;
				website = 'Bivouac.com',&lt;br /&gt;
				accessdate = args['date'] } }&lt;br /&gt;
			table.insert(refs, {'J', r})&lt;br /&gt;
		end&lt;br /&gt;
		if args['pw'] and args['nor'] == nil then&lt;br /&gt;
			local r = frame:expandTemplate{ title = 'cite peakware', args = {&lt;br /&gt;
				title = args['name'] or args[1],&lt;br /&gt;
				id = args['pw'],&lt;br /&gt;
				accessdate = args['date'] } }&lt;br /&gt;
			table.insert(refs, {'K', r})&lt;br /&gt;
		end&lt;br /&gt;
		for i, r in ipairs(refs) do&lt;br /&gt;
			res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1]})&lt;br /&gt;
		end&lt;br /&gt;
		for i, r in ipairs(notes) do&lt;br /&gt;
			res = res .. frame:extensionTag ('ref', r[2], {name=r[1] .. '_' .. args[1], group='lower-alpha'})&lt;br /&gt;
		end&lt;br /&gt;
		if args['alt'] then&lt;br /&gt;
			res = res .. '&amp;lt;br/&amp;gt;' .. '([[' .. args[1] .. '|' .. args['alt'] .. ']])'&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	return res&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Zoran</name></author>
	</entry>
</feed>