Updated ...
This commit is contained in:
parent
671ff41f88
commit
dec30d2090
3 changed files with 34 additions and 6 deletions
12
Makefile.am
12
Makefile.am
|
@ -24,7 +24,7 @@ fgfs-base: fgfs-base-tar fgfs-base-zip
|
||||||
|
|
||||||
fgfs-base-tar:
|
fgfs-base-tar:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
tar czvf fgfs-base-$(VERSION).tar.gz \
|
tar czvf fgfs-base-$(VERSION)c.tar.gz \
|
||||||
FlightGear/[A-CE-R]* \
|
FlightGear/[A-CE-R]* \
|
||||||
FlightGear/Scenery/w120n30/w111n33 \
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
FlightGear/Sounds \
|
FlightGear/Sounds \
|
||||||
|
@ -32,13 +32,21 @@ fgfs-base-tar:
|
||||||
|
|
||||||
fgfs-base-zip:
|
fgfs-base-zip:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
zip -ryv fgfs-base-$(VERSION).zip \
|
zip -ryv fgfs-base-$(VERSION)c.zip \
|
||||||
FlightGear/[A-CE-R]* \
|
FlightGear/[A-CE-R]* \
|
||||||
FlightGear/Scenery/w120n30/w111n33 \
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
FlightGear/Sounds \
|
FlightGear/Sounds \
|
||||||
FlightGear/Textures FlightGear/Thanks \
|
FlightGear/Textures FlightGear/Thanks \
|
||||||
FlightGear/[T-W]* FlightGear/[c-z]*)
|
FlightGear/[T-W]* FlightGear/[c-z]*)
|
||||||
|
|
||||||
|
fgfs-base-patch:
|
||||||
|
(cd $(HOME); \
|
||||||
|
tar --newer 2/17/2000 -czvf fgfs-base-patch-$(VERSION)c.tar.gz \
|
||||||
|
FlightGear/[A-CE-R]* \
|
||||||
|
FlightGear/Scenery/w120n30/w111n33 \
|
||||||
|
FlightGear/Sounds \
|
||||||
|
FlightGear/[T-W]* FlightGear/[c-m]*)
|
||||||
|
|
||||||
# make the mini JSBsim data distribution
|
# make the mini JSBsim data distribution
|
||||||
jsbsim-data:
|
jsbsim-data:
|
||||||
(cd $(HOME); \
|
(cd $(HOME); \
|
||||||
|
|
16
Thanks
16
Thanks
|
@ -128,6 +128,10 @@ Michael I. Gold <gold@puck.asd.sgi.com>
|
||||||
His effort alone has made me a great SGI fan.
|
His effort alone has made me a great SGI fan.
|
||||||
|
|
||||||
|
|
||||||
|
Habibie <habibie@MailandNews.com>
|
||||||
|
RedHat package building changes for SimGear.
|
||||||
|
|
||||||
|
|
||||||
Charlie Hotchkiss <clhotch@pacbell.net>
|
Charlie Hotchkiss <clhotch@pacbell.net>
|
||||||
Worked on improving and enhancing the HUD code.
|
Worked on improving and enhancing the HUD code.
|
||||||
Lots of code style tips and code tweaks ...
|
Lots of code style tips and code tweaks ...
|
||||||
|
@ -200,6 +204,11 @@ Alan Murta <amurta@cs.man.ac.uk>
|
||||||
Created the Generic Polygon Clipping library
|
Created the Generic Polygon Clipping library
|
||||||
|
|
||||||
|
|
||||||
|
Phil Nelson <phil@cs.wwu.edu>
|
||||||
|
Author of GNU dbm. gdbm is a set of database routines that use
|
||||||
|
extendible hashing and works similar to the standard UNIX dbm routines.
|
||||||
|
|
||||||
|
|
||||||
Alexei Novikov <anovikov@heron.itep.ru>
|
Alexei Novikov <anovikov@heron.itep.ru>
|
||||||
Created European Scenery
|
Created European Scenery
|
||||||
Contributed a script to turn fgfs scenery into beautifully rendered
|
Contributed a script to turn fgfs scenery into beautifully rendered
|
||||||
|
@ -360,6 +369,13 @@ Darrell Walisser <dwaliss1@purdue.edu>
|
||||||
Provides MacOS-specific info in the docs.
|
Provides MacOS-specific info in the docs.
|
||||||
|
|
||||||
|
|
||||||
|
Ed Williams <Ed_Williams@compuserve.com>
|
||||||
|
Contributed magnetic variation code (impliments Nima WMM 2000)
|
||||||
|
We've also borrowed from Ed's wonderful aviation formulary at various
|
||||||
|
times as well.
|
||||||
|
http://www.best.com/~williams/index.html
|
||||||
|
|
||||||
|
|
||||||
WoodSoup Project http://www.woodsoup.org
|
WoodSoup Project http://www.woodsoup.org
|
||||||
Provided computing resources and services so that the Flight Gear
|
Provided computing resources and services so that the Flight Gear
|
||||||
project could have real home. This includes, web services,
|
project could have real home. This includes, web services,
|
||||||
|
|
|
@ -63,8 +63,12 @@ double FGSteam::get_VSI_fps() { _CatchUp(); return the_VSI_fps; }
|
||||||
double FGSteam::the_VACUUM_inhg = 0.0;
|
double FGSteam::the_VACUUM_inhg = 0.0;
|
||||||
double FGSteam::get_VACUUM_inhg() { _CatchUp(); return the_VACUUM_inhg; }
|
double FGSteam::get_VACUUM_inhg() { _CatchUp(); return the_VACUUM_inhg; }
|
||||||
|
|
||||||
double FGSteam::get_MH_deg () { return FGBFI::getHeading () - VARY_E; }
|
double FGSteam::get_MH_deg () {
|
||||||
double FGSteam::get_DG_deg () { return FGBFI::getHeading () - VARY_E; }
|
return FGBFI::getHeading () - FGBFI::getMagVar ();
|
||||||
|
}
|
||||||
|
double FGSteam::get_DG_deg () {
|
||||||
|
return FGBFI::getHeading () - FGBFI::getMagVar ();
|
||||||
|
}
|
||||||
|
|
||||||
double FGSteam::get_TC_rad () { return FGBFI::getSideSlip (); }
|
double FGSteam::get_TC_rad () { return FGBFI::getSideSlip (); }
|
||||||
double FGSteam::get_TC_radps () { return FGBFI::getRoll (); }
|
double FGSteam::get_TC_radps () { return FGBFI::getRoll (); }
|
||||||
|
@ -246,7 +250,7 @@ double FGSteam::get_HackVOR1_deg ()
|
||||||
y = 60.0 * ( NAV1_Lat - FGBFI::getLatitude () );
|
y = 60.0 * ( NAV1_Lat - FGBFI::getLatitude () );
|
||||||
x = 60.0 * ( NAV1_Lon - FGBFI::getLongitude() )
|
x = 60.0 * ( NAV1_Lon - FGBFI::getLongitude() )
|
||||||
* cos ( FGBFI::getLatitude () / RAD_TO_DEG );
|
* cos ( FGBFI::getLatitude () / RAD_TO_DEG );
|
||||||
r = atan2 ( x, y ) * RAD_TO_DEG - NAV1_Rad - VARY_E;
|
r = atan2 ( x, y ) * RAD_TO_DEG - NAV1_Rad - FGBFI::getMagVar();
|
||||||
if (r> 180.0) r-=360.0; else
|
if (r> 180.0) r-=360.0; else
|
||||||
if (r<-180.0) r+=360.0;
|
if (r<-180.0) r+=360.0;
|
||||||
if ( fabs(r) > 90.0 )
|
if ( fabs(r) > 90.0 )
|
||||||
|
@ -262,7 +266,7 @@ double FGSteam::get_HackVOR2_deg ()
|
||||||
y = 60.0 * ( NAV2_Lat - FGBFI::getLatitude () );
|
y = 60.0 * ( NAV2_Lat - FGBFI::getLatitude () );
|
||||||
x = 60.0 * ( NAV2_Lon - FGBFI::getLongitude() )
|
x = 60.0 * ( NAV2_Lon - FGBFI::getLongitude() )
|
||||||
* cos ( FGBFI::getLatitude () / RAD_TO_DEG );
|
* cos ( FGBFI::getLatitude () / RAD_TO_DEG );
|
||||||
r = atan2 ( x, y ) * RAD_TO_DEG - NAV2_Rad - VARY_E;
|
r = atan2 ( x, y ) * RAD_TO_DEG - NAV2_Rad - FGBFI::getMagVar();
|
||||||
if (r> 180.0) r-=360.0; else
|
if (r> 180.0) r-=360.0; else
|
||||||
if (r<-180.0) r+=360.0;
|
if (r<-180.0) r+=360.0;
|
||||||
if ( fabs(r) > 90.0 )
|
if ( fabs(r) > 90.0 )
|
||||||
|
|
Loading…
Reference in a new issue