116 lines
9.3 KiB
Rexx
116 lines
9.3 KiB
Rexx
/*REXX program converts temperatures for a number (8) of temperature scales. */
|
||
numeric digits 120 /*be able to support some huge numbers.*/
|
||
parse arg tList /*get the specified temperature list. */
|
||
|
||
do until tList='' /*process the list of temperatures. */
|
||
parse var tList x ',' tList /*temps are separated by commas. */
|
||
x=translate(x,'((',"[{") /*support other grouping symbols. */
|
||
x=space(x); parse var x z '(' /*handle any comments (if any). */
|
||
parse upper var z z ' TO ' ! . /*separate the TO option from number.*/
|
||
if !=='' then !='ALL'; all=!=='ALL' /*allow specification of "TO" opt*/
|
||
if z=='' then call serr "no arguments were specified." /*oops-ay. */
|
||
_=verify(z, '+-.0123456789') /*list of valid numeral/number thingys.*/
|
||
n=z
|
||
if _\==0 then do
|
||
if _==1 then call serr 'illegal temperature:' z
|
||
n=left(z, _-1) /*pick off the number (hopefully). */
|
||
u=strip(substr(z, _)) /*pick off the temperature unit. */
|
||
end
|
||
else u='k' /*assume kelvin as per task requirement*/
|
||
|
||
if \datatype(n, 'N') then call serr 'illegal number:' n
|
||
if \all then do /*is there is a TO ααα scale? */
|
||
call name ! /*process the TO abbreviation. */
|
||
!=sn /*assign the full name to ! */
|
||
end /*!: now contains temperature full name*/
|
||
call name u /*allow alternate scale (miss)spellings*/
|
||
|
||
select /*convert ──► °Fahrenheit temperatures.*/
|
||
when sn=='CELSIUS' then F=n * 9/5 + 32
|
||
when sn=='DELISLE' then F=212 -(n * 6/5)
|
||
when sn=='FAHRENHEIT' then F=n
|
||
when sn=='KELVIN' then F=n * 9/5 - 459.67
|
||
when sn=='NEWTON' then F=n * 60/11 + 32
|
||
when sn=='RANKINE' then F=n - 459.67 /*a single R is taken as Rankine.*/
|
||
when sn=='REAUMUR' then F=n * 9/4 + 32
|
||
when sn=='ROMER' then F=(n-7.5) * 27/4 + 32
|
||
otherwise call serr 'illegal temperature scale: ' u
|
||
end /*select*/
|
||
|
||
K = (F + 459.67) * 5/9 /*compute temperature to kelvins. */
|
||
say right(' ' x, 79, "─") /*show the original value, scale, sep. */
|
||
if all | !=='CELSIUS' then say $( ( F - 32 ) * 5/9 ) 'Celsius'
|
||
if all | !=='DELISLE' then say $( ( 212 - F ) * 5/6 ) 'Delisle'
|
||
if all | !=='FAHRENHEIT' then say $( F ) 'Fahrenheit'
|
||
if all | !=='KELVIN' then say $( K ) 'kelvin's(K)
|
||
if all | !=='NEWTON' then say $( ( F - 32 ) * 11/60 ) 'Newton'
|
||
if all | !=='RANKINE' then say $( F + 459.67 ) 'Rankine'
|
||
if all | !=='REAUMUR' then say $( ( F - 32 ) * 4/9 ) 'Reaumur'
|
||
if all | !=='ROMER' then say $( ( F - 32 ) * 4/27 + 7.5 ) 'Romer'
|
||
end /*until*/
|
||
|
||
exit /*stick a fork in it, we're all done. */
|
||
/*──────────────────────────────────────────────────────────────────────────────────────*/
|
||
s: if arg(1)==1 then return arg(3); return word(arg(2) 's',1)
|
||
serr: say; say '***error!***'; say; say arg(1); say; exit 13
|
||
/*──────────────────────────────────────────────────────────────────────────────────────*/
|
||
$: procedure; showDig=8 /*only show eight significant digits.*/
|
||
_=format(arg(1), , showDig) / 1 /*format number 8 digs past dec, point.*/
|
||
p=pos(., _); L=length(_) /*find position of the decimal point. */
|
||
/* [↓] align integers with FP numbers.*/
|
||
if p==0 then _=_ || left('',5+showDig+1) /*the number has no decimal point. */
|
||
else _=_ || left('',5+showDig-L+p) /* " " " a " " */
|
||
return right(_, 50) /*return the re-formatted number (arg).*/
|
||
/*──────────────────────────────────────────────────────────────────────────────────────*/
|
||
name: parse arg y /*abbreviations ──► shortname.*/
|
||
yU=translate(y, 'eE', "éÉ"); upper yU /*uppercase the temperature unit*/
|
||
if left(yU, 7)=='DEGREES' then yU=substr(yU, 8) /*redundant "degrees" after #? */
|
||
if left(yU, 6)=='DEGREE' then yU=substr(yU, 7) /* " "degree" " " */
|
||
yU=strip(yU) /*elide blanks at front and back*/
|
||
_=length(yU) /*obtain the yU length. */
|
||
if right(yU, 1)=='S' & _>1 then yU=left(yU, _ -1) /*elide trailing plural, if any.*/
|
||
select /*abbreviations ──► shortname.*/
|
||
when abbrev('CENTIGRADE' , yU) |,
|
||
abbrev('CENTRIGRADE', yU) |, /* 50% misspelled.*/
|
||
abbrev('CETIGRADE' , yU) |, /* 50% misspelled.*/
|
||
abbrev('CENTINGRADE', yU) |,
|
||
abbrev('CENTESIMAL' , yU) |,
|
||
abbrev('CELCIU' , yU) |, /* 82% misspelled.*/
|
||
abbrev('CELCIOU' , yU) |, /* 4% misspelled.*/
|
||
abbrev('CELCUI' , yU) |, /* 4% misspelled.*/
|
||
abbrev('CELSUI' , yU) |, /* 2% misspelled.*/
|
||
abbrev('CELCEU' , yU) |, /* 2% misspelled.*/
|
||
abbrev('CELCU' , yU) |, /* 2% misspelled.*/
|
||
abbrev('CELISU' , yU) |, /* 1% misspelled.*/
|
||
abbrev('CELSU' , yU) |, /* 1% misspelled.*/
|
||
abbrev('CELSIU' , yU) then sn='CELSIUS'
|
||
when abbrev('DELISLE' , yU,2) then sn='DELISLE'
|
||
when abbrev('FARENHEIT' , yU) |, /* 39% misspelled.*/
|
||
abbrev('FARENHEIGHT', yU) |, /* 15% misspelled.*/
|
||
abbrev('FARENHITE' , yU) |, /* 6% misspelled.*/
|
||
abbrev('FARENHIET' , yU) |, /* 3% misspelled.*/
|
||
abbrev('FARHENHEIT' , yU) |, /* 3% misspelled.*/
|
||
abbrev('FARINHEIGHT', yU) |, /* 2% misspelled.*/
|
||
abbrev('FARENHIGHT' , yU) |, /* 2% misspelled.*/
|
||
abbrev('FAHRENHIET' , yU) |, /* 2% misspelled.*/
|
||
abbrev('FERENHEIGHT', yU) |, /* 2% misspelled.*/
|
||
abbrev('FEHRENHEIT' , yU) |, /* 2% misspelled.*/
|
||
abbrev('FERENHEIT' , yU) |, /* 2% misspelled.*/
|
||
abbrev('FERINHEIGHT', yU) |, /* 1% misspelled.*/
|
||
abbrev('FARIENHEIT' , yU) |, /* 1% misspelled.*/
|
||
abbrev('FARINHEIT' , yU) |, /* 1% misspelled.*/
|
||
abbrev('FARANHITE' , yU) |, /* 1% misspelled.*/
|
||
abbrev('FAHRENHEIT' , yU) then sn='FAHRENHEIT'
|
||
when abbrev('KALVIN' , yU) |, /* 27% misspelled.*/
|
||
abbrev('KERLIN' , yU) |, /* 18% misspelled.*/
|
||
abbrev('KEVEN' , yU) |, /* 9% misspelled.*/
|
||
abbrev('KELVIN' , yU) then sn='KELVIN'
|
||
when abbrev('NEUTON' , yU) |, /*100% misspelled.*/
|
||
abbrev('NEWTON' , yU) then sn='NEWTON'
|
||
when abbrev('RANKINE' , yU, 1) then sn='RANKINE'
|
||
when abbrev('REAUMUR' , yU, 2) then sn='REAUMUR'
|
||
when abbrev('ROEMER' , yU, 2) |,
|
||
abbrev('ROMER' , yU, 2) then sn='ROMER'
|
||
otherwise call serr 'illegal temperature scale:' y
|
||
end /*select*/
|
||
return
|