Android Unit Convert getMPHFromLevel(int level)

Here you can find the source of getMPHFromLevel(int level)

Description

get MPH From Level

License

Apache License

Declaration

public static float getMPHFromLevel(int level) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static final float[] WINDLEVELMAPPING = new float[] { 0.4f,
            2.2f, 5.6f, 9.8f, 14.9f, 20.1f, 27.5f, 33.5f, 41.8f, 49.2f,
            59.3f, 67.1f, 73.2f };//  ww w.j a  v a2s.  c  o  m

    public static float getMPHFromLevel(int level) {
        return WINDLEVELMAPPING[level];
    }
}

Related

  1. convertFromHgInchToHpa(float hgInch)
  2. convertFromHpaToHgInch(float hpa)
  3. convertFromInchToMillimetre(float length)
  4. convertFromMillimetreToInch(float length)
  5. c2si(int temperature)