■hPa(ヘクトパスカル)からPa(パスカル)へ変換
hPaからPaへ変換するには100を乗算すればよい。
1 hPa = 100 Pa
function hPa_to_Pa(n) { return n * 100; }
[目次に戻る]