CFLib.org – Common Function Library Project

MphToKts(mph)

Last updated September 10, 2001
Download UDF

author

Joshua Licht                                      Joshua Licht

Version: 1 | Requires: ColdFusion 5 | Library: ScienceLib

Description:
Converts Miles Per Hour to Knots. Knots are a unit of speed, not distance.

Return Values:
Returns a numeric value.

Example:

<CFSET mph=23>
<CFOUTPUT>
Given mph=#mph#<BR>
#mph# Miles Per Hour = #MphToKts(mph)# Knots Per Hour. <br>
</CFOUTPUT>

Parameters:

Name Description Required
mph Miles per hour you want converted to knots. Yes

Full UDF Source:

<cfscript>
/**
* Converts Miles Per Hour to Knots.
*
* @param mph      Miles per hour you want converted to knots.
* @return Returns a numeric value.
* @author Joshua Licht (jlicht5@hotmail.com)
* @version 1.0, September 10, 2001
*/

function MphToKts(mph)
{
Return MPH / 1.15;
}
</cfscript>

Search CFLib.org


Latest Additions

Jose Diaz-Salcedo Jose Diaz-Salcedo added
cfRssFeed
2 day(s) ago

Raymond Compton Raymond Compton added
structBlend
23 day(s) ago

Duncan Duncan added
IsZIPUK
23 day(s) ago

Todd Sharp Todd Sharp added
getTagContentAll
29 day(s) ago

Gerald Guido Gerald Guido added
ListReturnDuplicat...
1 month(s) ago

Created by Raymond Camden / Design by Justin Johnson