KtsToMph(knots)
Last updated September 10, 2001
Version: 1 | Requires: ColdFusion 5 | Library: ScienceLib
Description:
Converts Knots to Miles Per Hour. Knots are a unit of speed, not distance.
Return Values:
Returns a numeric value.
Example:
<CFOUTPUT>
Given kt=#kts#<BR>
#kts# Knots = #KtsToMph(kts)# Miles Per Hour. <br>
</CFOUTPUT>
Parameters:
| Name | Description | Required |
|---|---|---|
| knots | Number of knots you want to convert to miles per hour. | Yes |
Full UDF Source:
<cfscript>
/**
* Converts Knots to Mile Per Hour.
*
* @param knots Number of knots you want to convert to miles per hour.
* @return Returns a numeric value.
* @author Joshua Licht (jlicht5@hotmail.com)
* @version 1.0, September 10, 2001
*/
function KtsToMph(knots)
{
Return Knots * 1.15;
}
</cfscript>
Search CFLib.org
Latest Additions
Jose Diaz-Salcedo added
cfRssFeed
2 day(s) ago
Raymond Compton added
structBlend
23 day(s) ago
Duncan added
IsZIPUK
23 day(s) ago
Todd Sharp added
getTagContentAll
29 day(s) ago
Gerald Guido added
ListReturnDuplicat...
1 month(s) ago