Java Knot to Meter Convert knotsToMetersPerSecond(double speedInKnots)

Here you can find the source of knotsToMetersPerSecond(double speedInKnots)

Description

knots To Meters Per Second

License

Open Source License

Declaration

public static double knotsToMetersPerSecond(double speedInKnots) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static double knotsToMetersPerSecond(double speedInKnots) {
        return speedInKnots * 1852d / 3600d;
    }/*from   www .j  a  va 2 s.co m*/
}