[Phphtmllib-devel] SF.net SVN: phphtmllib:[3475] trunk/open2300/lib/modules/api/ AviationWeather.in
Status: Beta
Brought to you by:
hemna
|
From: <he...@us...> - 2010-06-16 23:28:07
|
Revision: 3475
http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3475&view=rev
Author: hemna
Date: 2010-06-16 23:28:01 +0000 (Wed, 16 Jun 2010)
Log Message:
-----------
xw and headwind
Modified Paths:
--------------
trunk/open2300/lib/modules/api/AviationWeather.inc
Modified: trunk/open2300/lib/modules/api/AviationWeather.inc
===================================================================
--- trunk/open2300/lib/modules/api/AviationWeather.inc 2010-06-16 23:24:20 UTC (rev 3474)
+++ trunk/open2300/lib/modules/api/AviationWeather.inc 2010-06-16 23:28:01 UTC (rev 3475)
@@ -78,7 +78,8 @@
$xw = $this->do_crosswind($runway, $wxInfo["Wind"]);
$info[] = array("runway" => $runway["runway_number"],
"length" => $runway["length"],
- "crosswind" => $runway["crosswind"]);
+ "crosswind" => $runway["crosswind"],
+ "headwind" => $runway["headwind"]);
}
@@ -119,7 +120,8 @@
$runway["xw_head"] = "tailwind";
}
- $runway["crosswind"] = $q."kt ".$runway["xw_direction"]." ".$runway["xw_head"];
+ $runway["crosswind"] = $q."kt ".$runway["xw_direction"];
+ $runway["headwind"] = $m."kt ".$runway["xw_head"];
//
// l = Rway.runwayd.value;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|