[Gpredict-svn] SF.net SVN: gpredict:[914] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
|
From: <aa...@us...> - 2011-10-03 00:56:21
|
Revision: 914
http://gpredict.svn.sourceforge.net/gpredict/?rev=914&view=rev
Author: aa1vs
Date: 2011-10-03 00:56:15 +0000 (Mon, 03 Oct 2011)
Log Message:
-----------
Make groundtrack show on orbit zero.
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/src/gtk-sat-map-ground-track.c
trunk/src/sgpsdp/sgp4sdp4.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2011-10-02 23:53:19 UTC (rev 913)
+++ trunk/ChangeLog 2011-10-03 00:56:15 UTC (rev 914)
@@ -1,5 +1,11 @@
-2011-09-28 Charles Suprin <hamaa1vs at gmail.com>
+2011-10-02 Charles Suprin <hamaa1vs at gmail.com>
+ * src/sgpsdp/sgp4sdp4.h
+ * src/gtk-sat-map-ground-track.c
+ Make groundtrack show on orbit zero. (bug 3416451: No ground track for new satellites)
+
+2011-10-02 Charles Suprin <hamaa1vs at gmail.com>
+
* src/gtk-sat-map.c
* src/gtk-sat-map-ground-track.c
Delete ground track of decayed satellite.
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2011-10-02 23:53:19 UTC (rev 913)
+++ trunk/NEWS 2011-10-03 00:56:15 UTC (rev 914)
@@ -16,8 +16,8 @@
- Fixed bug 3400534: Operational Status.
- Fixed bug 3309111: Wrong icon in time controller.
- Fixed bug 3413571: UARS Ground Track not Updated on TLE update.
+- Fixed bug 3416451: No ground track for new satellites.
-
Changes in version 1.3 (1 Mar 2011)
- Feature request 2873824: Flip Passes.
Modified: trunk/src/gtk-sat-map-ground-track.c
===================================================================
--- trunk/src/gtk-sat-map-ground-track.c 2011-10-02 23:53:19 UTC (rev 913)
+++ trunk/src/gtk-sat-map-ground-track.c 2011-10-03 00:56:15 UTC (rev 914)
@@ -71,8 +71,8 @@
void
ground_track_create (GtkSatMap *satmap, sat_t *sat, qth_t *qth, sat_map_obj_t *obj)
{
- unsigned long this_orbit; /* current orbit number */
- unsigned long max_orbit; /* target orbit number, ie. this + num - 1 */
+ long this_orbit; /* current orbit number */
+ long max_orbit; /* target orbit number, ie. this + num - 1 */
double t0; /* time when this_orbit starts */
double t;
ssp_t *this_ssp;
Modified: trunk/src/sgpsdp/sgp4sdp4.h
===================================================================
--- trunk/src/sgpsdp/sgp4sdp4.h 2011-10-02 23:53:19 UTC (rev 913)
+++ trunk/src/sgpsdp/sgp4sdp4.h 2011-10-03 00:56:15 UTC (rev 914)
@@ -191,7 +191,7 @@
double footprint; /*!< footprint */
double phase; /*!< orbit phase */
double meanmo; /*!< mean motion kept in rev/day */
- unsigned long orbit; /*!< orbit number */
+ long orbit; /*!< orbit number */
orbit_type_t otype; /*!< orbit type. */
} sat_t;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|