Main public logs
Appearance
Combined display of all available logs of Shark's Hypothetical Weather. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:28, 30 May 2025 Sharkius talk contribs created page Module:ConvertMPHKMHTCStats (Created page with "local p = {} function round(num, digits) digits = digits or 0 local mult = 10 ^ digits return math.floor(num * mult + 0.5) / mult end function p.main(frame) local args = frame.args local mph = tonumber(args[1]) local sigfig = tonumber(args["sigfig"]) or 4 if not mph then return "" end local kmh = mph * 1.609344 -- Round to nearest integer local rounded_mph = round(mph) local rounded_kmh = round(kmh) return string.format("%d (%d)", rounded_mph, rounded_k...")