Modulis:Koordinātu pārbaude

Dokumentācijas ikona Moduļa dokumentācija[izveidot]
--[[((((latid l) - (latitude w)) < ({{#if:precision w|precision w|1}})) and (((latid l) - (latitude w)) > -({{#if:precision w|precision w|1}}))) 

and 

((((long l) - (longitude w)) < ({{#if:precision w|precision w|1}})) and (((long l) - (longitude w)) > -({{#if:precision w|precision w|1}})))



	local latl = tonumber(frame.args[1]);
	local longl = tonumber(frame.args[2]);
	local latw = 
	local longw = 
	local precw = or 1;
	local some --vērtība!

	if precw > 1 then
		some = math.floor(some / precw) * precw
	end

			if not format.dms then
				-- format decimal value
				if format.precision > 1 then
					-- round the value
					value = math.floor(value / format.precision) * format.precision
				end
]]