Wandelt km/h in mph um (ohne Nachkommastellen).
static int kmhToMph(int kmh) { return (kmh / 1.60934).floor(); // Division und Abrunden }