■Pa(パスカル)からhPa(ヘクトパスカル)へ変換

 PaからhPaへ変換するには100で割ればよい。

100 Pa = 1 hPa

function Pa_to_hPa(n)
{
    return n / 100;
}

[目次に戻る]