[Gpredict-svn] SF.net SVN: gpredict:[617] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2010-05-20 19:22:13
|
Revision: 617 http://gpredict.svn.sourceforge.net/gpredict/?rev=617&view=rev Author: csete Date: 2010-05-20 19:22:07 +0000 (Thu, 20 May 2010) Log Message: ----------- Applied patch 3002344: Remove Uninitialized Jump (Thanks to Charles Suprin AA1VS). Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/sgpsdp/sgp4sdp4.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-04 13:17:46 UTC (rev 616) +++ trunk/ChangeLog 2010-05-20 19:22:07 UTC (rev 617) @@ -1,3 +1,9 @@ +2010-05-20 Alexandru Csete <oz9aec at gmail.com> + + * src/sgpsdp/sgp4sdp4.c: + Applied patch 3002344: Remove Uninitialized Jump. + + 2010-05-04 Alexandru Csete <oz9aec at gmail.com> * src/gtk-sky-at-glance.c: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-04 13:17:46 UTC (rev 616) +++ trunk/NEWS 2010-05-20 19:22:07 UTC (rev 617) @@ -30,6 +30,7 @@ - Applied patch 2945525: Sort list of modules in open module dialog (Thanks to Charles Suprin AA1VS). - Applied patch 2947459: Make Module List Scrollable (Thanks to Charles Suprin AA1VS). - Applied patch 2951724: Allow TX Doppler correction for FT-817, 857 and 897 (Thanks to Charles Suprin AA1VS). +- Applied patch 3002344: Remove Uninitialized Jump (Thanks to Charles Suprin AA1VS). - Slightly improved UI for the single-satellite view. - Command line options for cleaning user's TLE and transponder data, see --help for list. - Satellite Map: Added shadow to satellite marker and label to enhance visual appearance Modified: trunk/src/sgpsdp/sgp4sdp4.c =================================================================== --- trunk/src/sgpsdp/sgp4sdp4.c 2010-05-04 13:17:46 UTC (rev 616) +++ trunk/src/sgpsdp/sgp4sdp4.c 2010-05-20 19:22:07 UTC (rev 617) @@ -554,6 +554,7 @@ sinq = sin (sat->tle.xnodeo); cosq = cos (sat->tle.xnodeo); sat->dps.omegaq = sat->tle.omegao; + sat->dps.preep = 0; /* Initialize lunar solar terms */ day = sat->deep_arg.ds50 + 18261.5; /*Days since 1900 Jan 0.5*/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |