Data update

This commit is contained in:
Ingy döt Net 2026-04-30 12:34:36 -04:00
parent 4bb20c9b71
commit cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions

View file

@ -0,0 +1,28 @@
@echo off
setlocal enableextensions enabledelayedexpansion
set /p n=
set "tempstr=%n:.= %"
call :assignnum %tempstr%
set /a res=n & call :disp K
set /a res-=27315 & call :disp C
set /a res=(res*18+32000)/10 & call :disp F
set /a res=res+45967 & call :disp R
goto:eof
:assignnum
set tempstr=%2
if not defined tempstr goto:setzero
2>nul set /a tempstr=%tempstr:~0,2%||goto:setzero
set /a "n=tempstr%%10"
if "%n%"=="%tempstr%" set tempstr=0%tempstr%
:_assign
set /a n=%1%tempstr%
goto:eof
:setzero
set tempstr=00
goto :_assign
:disp
echo %1 %res:~0,-2%.%res:~-2%
goto:eof