Here you can find the source of getMPHFromLevel(int level)
public static float getMPHFromLevel(int level)
//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]; } }