gpredict-svn Mailing List for Gpredict (Page 14)
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
You can subscribe to this list here.
2008 |
Jan
(24) |
Feb
|
Mar
(6) |
Apr
(14) |
May
(9) |
Jun
|
Jul
|
Aug
(25) |
Sep
(60) |
Oct
(26) |
Nov
|
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
|
Feb
(2) |
Mar
(22) |
Apr
(61) |
May
(57) |
Jun
|
Jul
(3) |
Aug
(83) |
Sep
(35) |
Oct
(50) |
Nov
(28) |
Dec
(34) |
2010 |
Jan
(29) |
Feb
(15) |
Mar
(2) |
Apr
|
May
(6) |
Jun
(2) |
Jul
(24) |
Aug
(2) |
Sep
(9) |
Oct
(43) |
Nov
(22) |
Dec
(6) |
2011 |
Jan
(24) |
Feb
(22) |
Mar
(31) |
Apr
(13) |
May
(10) |
Jun
(10) |
Jul
(43) |
Aug
(12) |
Sep
(18) |
Oct
(33) |
Nov
(18) |
Dec
(4) |
From: <cs...@us...> - 2010-07-12 13:39:28
|
Revision: 641 http://gpredict.svn.sourceforge.net/gpredict/?rev=641&view=rev Author: csete Date: 2010-07-12 13:39:19 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Updated. Modified Paths: -------------- trunk/NEWS Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-07-12 13:34:47 UTC (rev 640) +++ trunk/NEWS 2010-07-12 13:39:19 UTC (rev 641) @@ -4,7 +4,8 @@ * New transponder editor to edit transponder data. - New layout engine that allows any combination of views to be created in a NxM grid. Closes feature request 2821408. -* Sky at a glance is now more interactive. Click on a pass to get the details. +- Sky at a glance is now more interactive. Show pass summary when mouse hovers over pass and + click on pass shows the details. * Feature request 2866570: Set operating mode via CAT. * Feature request 2873824: Flip Passes. * Feature request 2778735: Visual indicator for RX/TX/TRX. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-12 13:34:53
|
Revision: 640 http://gpredict.svn.sourceforge.net/gpredict/?rev=640&view=rev Author: csete Date: 2010-07-12 13:34:47 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Implemented pass summary pop-up when mouse hovers over a pass. Works like tootlips. Modified Paths: -------------- trunk/ChangeLog trunk/src/gtk-sky-glance.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-12 12:49:51 UTC (rev 639) +++ trunk/ChangeLog 2010-07-12 13:34:47 UTC (rev 640) @@ -9,7 +9,11 @@ * src/predict-tools.c: Include TCA when creating copy of a pass. + * src/gtk-sky-glance.c: + Implemented pass summary pop-up when mouse hovers over a pass. Works like + tooltips. + 2010-07-11 Alexandru Csete <oz9aec at gmail.com> * data/satdata: Modified: trunk/src/gtk-sky-glance.c =================================================================== --- trunk/src/gtk-sky-glance.c 2010-07-12 12:49:51 UTC (rev 639) +++ trunk/src/gtk-sky-glance.c 2010-07-12 13:34:47 UTC (rev 640) @@ -101,13 +101,13 @@ static GooCanvasItemModel* create_canvas_model (GtkSkyGlance *skg); +static void create_sat (gpointer key, gpointer value, gpointer data); + static gdouble t2x (GtkSkyGlance *skg, gdouble t); static gdouble x2t (GtkSkyGlance *skg, gdouble x); +static gchar *time_to_str (gdouble julutc); -static void create_sat (gpointer key, gpointer value, gpointer data); - - static GtkVBoxClass *parent_class = NULL; @@ -280,6 +280,7 @@ /* create the canvas */ GTK_SKY_GLANCE (skg)->canvas = goo_canvas_new (); + g_object_set (G_OBJECT (GTK_SKY_GLANCE(skg)->canvas), "has-tooltip", TRUE, NULL); gtk_widget_modify_base (GTK_SKY_GLANCE (skg)->canvas, GTK_STATE_NORMAL, &bg_color); gtk_widget_set_size_request (GTK_SKY_GLANCE (skg)->canvas, GTK_SKY_GLANCE (skg)->w, @@ -824,8 +825,6 @@ } - - //g_print("Mouse enter: %s AOS:\n"); return TRUE; @@ -983,7 +982,13 @@ GooCanvasItemModel *root; GooCanvasItemModel *lab; + /* tooltips vars */ + gchar *tooltip; /* the complete tooltips string */ + gchar *aosstr; /* AOS time string */ + gchar *losstr; /* LOS time string */ + gchar *tcastr; /* TCA time string */ + /* FIXME: Include current pass if sat is up now */ @@ -1021,10 +1026,32 @@ skypass->catnum = sat->tle.catnr; tmppass = (pass_t *) g_slist_nth_data (passes, i); skypass->pass = copy_pass (tmppass); + + aosstr = time_to_str (skypass->pass->aos); + losstr = time_to_str (skypass->pass->los); + tcastr = time_to_str (skypass->pass->tca); + + /* box tooltip will contain pass summary */ + tooltip = g_strdup_printf("<big><b>%s</b>\n</big>\n"\ + "<tt>AOS: %s Az:%.0f\302\260\n" \ + "TCA: %s Az:%.0f\302\260 / El:%.1f\302\260\n" \ + "LOS: %s Az:%.0f\302\260</tt>\n" \ + "\n<i>Click for details</i>", + skypass->pass->satname, + aosstr, skypass->pass->aos_az, + tcastr, skypass->pass->maxel_az, skypass->pass->max_el, + losstr, skypass->pass->los_az); + + g_free (aosstr); + g_free (losstr); + g_free (tcastr); + skypass->box = goo_canvas_rect_model_new (root, 10, 10, 20, 20, /* dummy coordinates */ "stroke-color-rgba", bcol, "fill-color-rgba", fcol, + "tooltip", tooltip, NULL); + g_free (tooltip); /* store this pass in list */ skg->passes = g_slist_append (skg->passes, skypass); @@ -1053,3 +1080,47 @@ skg->satlab = g_slist_append (skg->satlab, lab); } } + + + +/** \brief Convert "jul_utc" time to formatted string + * \param julutc The time to convert + * \return A newly allocated string containing the formatted time (should be freed by caller) + * + * \bug This code is duplicated many places. + */ +static gchar *time_to_str (gdouble julutc) +{ + gchar buff[TIME_FORMAT_MAX_LENGTH]; + gchar *fmtstr; + gchar *timestr; + time_t t; + guint size; + + + /* convert julian date to struct time_t */ + t = (julutc - 2440587.5)*86400.; + + /* format the number */ + fmtstr = sat_cfg_get_str (SAT_CFG_STR_TIME_FORMAT); + + /* format either local time or UTC depending on check box */ + if (sat_cfg_get_bool (SAT_CFG_BOOL_USE_LOCAL_TIME)) { + size = strftime (buff, TIME_FORMAT_MAX_LENGTH, fmtstr, localtime (&t)); + } + else { + size = strftime (buff, TIME_FORMAT_MAX_LENGTH, fmtstr, gmtime (&t)); + } + + g_free (fmtstr); + + + if (size == 0) + /* size > MAX_LENGTH */ + buff[TIME_FORMAT_MAX_LENGTH-1] = '\0'; + + timestr = g_strdup (buff); + + + return timestr; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-12 12:49:58
|
Revision: 639 http://gpredict.svn.sourceforge.net/gpredict/?rev=639&view=rev Author: csete Date: 2010-07-12 12:49:51 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Include TCA when creating a copy of a pass. Modified Paths: -------------- trunk/ChangeLog trunk/src/predict-tools.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-12 09:34:16 UTC (rev 638) +++ trunk/ChangeLog 2010-07-12 12:49:51 UTC (rev 639) @@ -6,7 +6,10 @@ * src/configure-ac: Require GooCanvas 0.15. Updated dependencies to match Ubuntu 9.10 Karmic. + * src/predict-tools.c: + Include TCA when creating copy of a pass. + 2010-07-11 Alexandru Csete <oz9aec at gmail.com> * data/satdata: Modified: trunk/src/predict-tools.c =================================================================== --- trunk/src/predict-tools.c 2010-07-12 09:34:16 UTC (rev 638) +++ trunk/src/predict-tools.c 2010-07-12 12:49:51 UTC (rev 639) @@ -661,6 +661,7 @@ if (new != NULL) { new->aos = pass->aos; new->los = pass->los; + new->tca = pass->tca; new->max_el = pass->max_el; new->aos_az = pass->aos_az; new->los_az = pass->los_az; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-12 09:34:24
|
Revision: 638 http://gpredict.svn.sourceforge.net/gpredict/?rev=638&view=rev Author: csete Date: 2010-07-12 09:34:16 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Require GooCanvas 0.15. Updated dependencies to match Ubuntu 9.10 Karmic. Modified Paths: -------------- trunk/ChangeLog trunk/configure.ac Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-12 08:53:24 UTC (rev 637) +++ trunk/ChangeLog 2010-07-12 09:34:16 UTC (rev 638) @@ -3,7 +3,10 @@ * src/mod-mgr.c: Allow docked modules to be reordered by dragging the tabs. + * src/configure-ac: + Require GooCanvas 0.15. Updated dependencies to match Ubuntu 9.10 Karmic. + 2010-07-11 Alexandru Csete <oz9aec at gmail.com> * data/satdata: Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2010-07-12 08:53:24 UTC (rev 637) +++ trunk/configure.ac 2010-07-12 09:34:16 UTC (rev 638) @@ -21,7 +21,7 @@ fi dnl check for glib, gtk, and goocanvas libraries -pkg_modules="gtk+-2.0 >= 2.12.0 glib-2.0 >= 2.16.0 gthread-2.0 >= 2.14.0 goocanvas >= 0.9 libcurl >= 7.16.0" +pkg_modules="gtk+-2.0 >= 2.18.0 glib-2.0 >= 2.22.0 gthread-2.0 >= 2.22.0 goocanvas >= 0.15 libcurl >= 7.19.0" PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-12 08:53:31
|
Revision: 637 http://gpredict.svn.sourceforge.net/gpredict/?rev=637&view=rev Author: csete Date: 2010-07-12 08:53:24 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Allow docked modules to be reordered by dragging the tabs. Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/mod-mgr.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/ChangeLog 2010-07-12 08:53:24 UTC (rev 637) @@ -1,3 +1,9 @@ +2010-07-12 alexandru Csete >oz9aec at gmail.com> + + * src/mod-mgr.c: + Allow docked modules to be reordered by dragging the tabs. + + 2010-07-11 Alexandru Csete <oz9aec at gmail.com> * data/satdata: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/NEWS 2010-07-12 08:53:24 UTC (rev 637) @@ -41,6 +41,7 @@ - Satellite Map: Added shadow to satellite marker and label to enhance visual appearance over light background map regions. - Fixed incorrect uplink and downlink frequencies for HO-68, mode V/U packet. +- Modules that are docked in the main window can be reordered by dragging the tabs. Changes in version 1.1 (5 Oct 2009) Modified: trunk/src/mod-mgr.c =================================================================== --- trunk/src/mod-mgr.c 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/src/mod-mgr.c 2010-07-12 08:53:24 UTC (rev 637) @@ -202,6 +202,9 @@ module, gtk_label_new (GTK_SAT_MODULE (module)->name)); + /* allow nmodule to be dragged to different position */ + gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK(nbook), module, TRUE); + gtk_notebook_set_current_page (GTK_NOTEBOOK (nbook), page); /* send message to logger */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 12:01:38
|
Revision: 636 http://gpredict.svn.sourceforge.net/gpredict/?rev=636&view=rev Author: csete Date: 2010-07-11 12:01:32 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Updated with new FT817/857/897 controller mode Modified Paths: -------------- trunk/doc/um/gpredict-user-manual.odt Modified: trunk/doc/um/gpredict-user-manual.odt =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 11:55:02
|
Revision: 635 http://gpredict.svn.sourceforge.net/gpredict/?rev=635&view=rev Author: csete Date: 2010-07-11 11:54:55 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Better logic for PTT selection Modified Paths: -------------- trunk/src/sat-pref-rig-editor.c Modified: trunk/src/sat-pref-rig-editor.c =================================================================== --- trunk/src/sat-pref-rig-editor.c 2010-07-11 11:52:10 UTC (rev 634) +++ trunk/src/sat-pref-rig-editor.c 2010-07-11 11:54:55 UTC (rev 635) @@ -533,14 +533,17 @@ type_changed (GtkWidget *widget, gpointer data) { /* PTT consistency */ - if ((gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TRX) || - (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_AUTO) || - (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_MAN)) - { + if (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TRX) { if (gtk_combo_box_get_active (GTK_COMBO_BOX (ptt)) == PTT_TYPE_NONE) { gtk_combo_box_set_active (GTK_COMBO_BOX (ptt), PTT_TYPE_CAT); } } + + if ((gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_AUTO) || + (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_MAN)) { + gtk_combo_box_set_active (GTK_COMBO_BOX (ptt), PTT_TYPE_CAT); + } + /* VFO consistency */ if (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_DUPLEX) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 11:52:17
|
Revision: 634 http://gpredict.svn.sourceforge.net/gpredict/?rev=634&view=rev Author: csete Date: 2010-07-11 11:52:10 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Automatically set PTT type for RIG_TYPE_TOGGLE_AUTO and RIG_TYPE_TOGGLE_MAN. Modified Paths: -------------- trunk/ChangeLog trunk/src/sat-pref-rig-editor.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 11:27:16 UTC (rev 633) +++ trunk/ChangeLog 2010-07-11 11:52:10 UTC (rev 634) @@ -14,6 +14,9 @@ * src/gtk-rig-ctrl.h: Updated RIG_TYPE_TOGGLE_AUTO controller to perform TX frequency update only once every 10 seconds. + + * src/sat-pref-rig-editor.c: + Automatically set PTT type for RIG_TYPE_TOGGLE_AUTO and RIG_TYPE_TOGGLE_MAN. 2010-07-09 Alexandru Csete <oz9aec at gmail.com> Modified: trunk/src/sat-pref-rig-editor.c =================================================================== --- trunk/src/sat-pref-rig-editor.c 2010-07-11 11:27:16 UTC (rev 633) +++ trunk/src/sat-pref-rig-editor.c 2010-07-11 11:52:10 UTC (rev 634) @@ -533,7 +533,10 @@ type_changed (GtkWidget *widget, gpointer data) { /* PTT consistency */ - if (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TRX) { + if ((gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TRX) || + (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_AUTO) || + (gtk_combo_box_get_active (GTK_COMBO_BOX (widget)) == RIG_TYPE_TOGGLE_MAN)) + { if (gtk_combo_box_get_active (GTK_COMBO_BOX (ptt)) == PTT_TYPE_NONE) { gtk_combo_box_set_active (GTK_COMBO_BOX (ptt), PTT_TYPE_CAT); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 11:27:22
|
Revision: 633 http://gpredict.svn.sourceforge.net/gpredict/?rev=633&view=rev Author: csete Date: 2010-07-11 11:27:16 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Updated RIG_TYPE_TOGGLE_AUTO controller to perform TX frequency update only once every 10 seconds. Modified Paths: -------------- trunk/ChangeLog trunk/src/gtk-rig-ctrl.c trunk/src/gtk-rig-ctrl.h Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 11:07:23 UTC (rev 632) +++ trunk/ChangeLog 2010-07-11 11:27:16 UTC (rev 633) @@ -10,7 +10,12 @@ Added function to set_ptt(). Implemented controller for RIG_TYPE_ROGGLE_MAN (FT-817/857/897 manual TX). + * src/gtk-rig-ctrl.c: + * src/gtk-rig-ctrl.h: + Updated RIG_TYPE_TOGGLE_AUTO controller to perform TX frequency update only + once every 10 seconds. + 2010-07-09 Alexandru Csete <oz9aec at gmail.com> * src/radio-conf.h: Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-11 11:07:23 UTC (rev 632) +++ trunk/src/gtk-rig-ctrl.c 2010-07-11 11:27:16 UTC (rev 633) @@ -204,6 +204,7 @@ ctrl->errcnt = 0; ctrl->lastrxf = 0.0; ctrl->lasttxf = 0.0; + ctrl->last_toggle_tx = -1; } static void gtk_rig_ctrl_destroy (GtkObject *object) @@ -1217,6 +1218,7 @@ case RIG_TYPE_TOGGLE_AUTO: case RIG_TYPE_TOGGLE_MAN: set_toggle (ctrl,ctrl->conf); + ctrl->last_toggle_tx = -1; exec_toggle_cycle (ctrl); break; @@ -1589,10 +1591,24 @@ exec_rx_cycle (ctrl); /* TX cycle is executed only if user selected RIG_TYPE_TOGGLE_AUTO - * In manual mode the TX freq update is performed only when TX isactivated + * In manual mode the TX freq update is performed only when TX is activated. + * Even in auto mode, the toggling is performed only once every 10 seconds. */ - if (ctrl->conf->type == RIG_TYPE_TOGGLE_AUTO) - exec_toggle_tx_cycle (ctrl); + if (ctrl->conf->type == RIG_TYPE_TOGGLE_AUTO) { + + GTimeVal current_time; + + /* get the current time */ + g_get_current_time (¤t_time); + + if ((ctrl->last_toggle_tx == -1) || ((current_time.tv_sec - ctrl->last_toggle_tx) >= 10)) { + /* it's time to update TX freq */ + exec_toggle_tx_cycle (ctrl); + + /* store current time */ + ctrl->last_toggle_tx = current_time.tv_sec; + } + } } /** \brief Execute TX mode cycle. Modified: trunk/src/gtk-rig-ctrl.h =================================================================== --- trunk/src/gtk-rig-ctrl.h 2010-07-11 11:07:23 UTC (rev 632) +++ trunk/src/gtk-rig-ctrl.h 2010-07-11 11:27:16 UTC (rev 633) @@ -106,6 +106,9 @@ gdouble lasttxf; /*!< Last frequency sent to tranmitter. */ gdouble du,dd; /*!< Last computed up/down Doppler shift; computed in update() */ + glong last_toggle_tx; /*!< Last time when exec_toggle_tx_cycle() was executed (seconds) + -1 indicates that an update should be performed ASAP */ + /* debug related */ guint wrops; guint rdops; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 11:07:29
|
Revision: 632 http://gpredict.svn.sourceforge.net/gpredict/?rev=632&view=rev Author: csete Date: 2010-07-11 11:07:23 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Added function to set_ptt(). Implemented controller for RIG_TYPE_ROGGLE_MAN (FT-817/857/897 manual TX). Modified Paths: -------------- trunk/ChangeLog trunk/src/gtk-rig-ctrl.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 09:22:27 UTC (rev 631) +++ trunk/ChangeLog 2010-07-11 11:07:23 UTC (rev 632) @@ -7,6 +7,8 @@ Simplified exec_toggle_tx_cycle() to only do something while PTT=FALSE and without any dial feedback since dial feedback makes no sense when using such radios. + Added function to set_ptt(). + Implemented controller for RIG_TYPE_ROGGLE_MAN (FT-817/857/897 manual TX). 2010-07-09 Alexandru Csete <oz9aec at gmail.com> Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-11 09:22:27 UTC (rev 631) +++ trunk/src/gtk-rig-ctrl.c 2010-07-11 11:07:23 UTC (rev 632) @@ -99,8 +99,8 @@ static void downlink_changed_cb (GtkFreqKnob *knob, gpointer data); static void uplink_changed_cb (GtkFreqKnob *knob, gpointer data); static gboolean key_press_cb (GtkWidget *widget, GdkEventKey *pKey, gpointer data); +static void manage_ptt_event (GtkRigCtrl *ctrl); - /* radio control functions */ static void exec_rx_cycle (GtkRigCtrl *ctrl); static void exec_tx_cycle (GtkRigCtrl *ctrl); @@ -116,6 +116,7 @@ static gboolean unset_toggle (GtkRigCtrl *ctrl, radio_conf_t *conf); static gboolean get_freq_toggle (GtkRigCtrl *ctrl, radio_conf_t *conf, gdouble *freq); static gboolean get_ptt (GtkRigCtrl *ctrl, radio_conf_t *conf); +static gboolean set_ptt (GtkRigCtrl *ctrl, radio_conf_t *conf, gboolean ptt); static gboolean set_vfo (GtkRigCtrl *ctrl, vfo_t vfo); static void update_count_down (GtkRigCtrl *ctrl, gdouble t); @@ -1168,6 +1169,7 @@ ctrl->lastrxf = 0.0; switch (ctrl->conf->type) { case RIG_TYPE_TOGGLE_AUTO: + case RIG_TYPE_TOGGLE_MAN: unset_toggle (ctrl,ctrl->conf); break; default: @@ -1213,17 +1215,11 @@ break; case RIG_TYPE_TOGGLE_AUTO: + case RIG_TYPE_TOGGLE_MAN: set_toggle (ctrl,ctrl->conf); exec_toggle_cycle (ctrl); break; - case RIG_TYPE_TOGGLE_MAN: - /** FIXME **/ - sat_log_log (SAT_LOG_LEVEL_BUG, - _("%s: Controller for RIG_TYPE_TOGGLE_MAN not implemented"), - __FUNCTION__); - break; - default: /* this is an error! */ ctrl->conf->type = RIG_TYPE_RX; @@ -1306,16 +1302,10 @@ break; case RIG_TYPE_TOGGLE_AUTO: + case RIG_TYPE_TOGGLE_MAN: exec_toggle_cycle (ctrl); break; - - case RIG_TYPE_TOGGLE_MAN: - /** FIXME **/ - sat_log_log (SAT_LOG_LEVEL_BUG, - _("%s: Controller for RIG_TYPE_TOGGLE_MAN not implemented"), - __FUNCTION__); - break; - + default: /* invalid mode */ sat_log_log (SAT_LOG_LEVEL_ERROR, @@ -1591,12 +1581,18 @@ /** \brief Execute toggle mode cycle. * \param ctrl Pointer to the GtkRigCtrl widget. * - * This function executes a controller cycle when the device is of RIG_TYPE_TOGGLE_AUTO. + * This function executes a controller cycle when the device is of RIG_TYPE_TOGGLE_AUTO + * and RIG_TYPE_TOGGLE_MAN. */ static void exec_toggle_cycle (GtkRigCtrl *ctrl) { exec_rx_cycle (ctrl); - exec_toggle_tx_cycle (ctrl); + + /* TX cycle is executed only if user selected RIG_TYPE_TOGGLE_AUTO + * In manual mode the TX freq update is performed only when TX isactivated + */ + if (ctrl->conf->type == RIG_TYPE_TOGGLE_AUTO) + exec_toggle_tx_cycle (ctrl); } /** \brief Execute TX mode cycle. @@ -1616,7 +1612,7 @@ static void exec_toggle_tx_cycle (GtkRigCtrl *ctrl) { - gdouble readfreq=0.0, tmpfreq, satfreqd, satfrequ; + gdouble tmpfreq; gboolean ptt = TRUE; @@ -2010,6 +2006,87 @@ } +/** \brief Set PTT status + * \param ctrl Pointer to the GtkRigCtrl data + * \param conf Pointer to the radio conf data + * \param ptt The new PTT value (TRUE=ON, FALSE=OFF) + * \return TRUE if the operation was successful, FALSE if an error has occurred + */ +static gboolean set_ptt (GtkRigCtrl *ctrl, radio_conf_t *conf, gboolean ptt) +{ + gchar *buff; + gint written,size; + gint status; + struct hostent *h; + struct sockaddr_in ServAddr; + gint sock; /*!< Network socket */ + + /* create socket */ + sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); + if (sock < 0) { + sat_log_log (SAT_LOG_LEVEL_ERROR, + _("%s: Failed to create socket"), + __FUNCTION__); + return FALSE; + } + else { + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: Network socket created successfully"), + __FUNCTION__); + } + + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ + ServAddr.sin_family = AF_INET; /* Internet address family */ + h = gethostbyname(conf->host); + memcpy((char *) &ServAddr.sin_addr.s_addr, h->h_addr_list[0], h->h_length); + ServAddr.sin_port = htons(conf->port); /* Server port */ + + /* establish connection */ + status = connect(sock, (struct sockaddr *) &ServAddr, sizeof(ServAddr)); + if (status < 0) { + sat_log_log (SAT_LOG_LEVEL_ERROR, + _("%s: Failed to connect to %s:%d"), + __FUNCTION__, conf->host, conf->port); + return FALSE; + } + else { + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: Connection opened to %s:%d"), + __FUNCTION__, conf->host, conf->port); + } + + /* send command */ + if (ptt == TRUE) { + buff = g_strdup_printf ("T 1\x0aq\x0a"); + } + else { + buff = g_strdup_printf ("T 0\x0aq\x0a"); + } + + size = 6; + written = send(sock, buff, size, 0); + if (written != size) { + sat_log_log (SAT_LOG_LEVEL_ERROR, + _("%s: SIZE ERROR %d / %d"), + __FUNCTION__, written, size); + } + g_free (buff); + +#ifndef WIN32 + shutdown (sock, SHUT_RDWR); +#else + shutdown (sock, SD_BOTH); +#endif + + close (sock); + + ctrl->wrops++; + + return TRUE; +} + + + /** \brief Set frequency in simplex mode * \param ctrl Pointer to the GtkRigCtrl structure. * \param freq The new frequency. @@ -3026,21 +3103,25 @@ /* filter GDK_KEY_PRESS events */ if (pKey->type == GDK_KEY_PRESS) { - + switch (pKey->keyval) { + /* keyvals not in API docs. See <gdk/gdkkeysyms.h> for a complete list */ case GDK_space: sat_log_log (SAT_LOG_LEVEL_MSG, _("%s: Detected SPACEBAR pressed event"), __FUNCTION__); + + /* manage PTT event */ + manage_ptt_event (ctrl); + event_managed = TRUE; - event_managed = TRUE; break; default: sat_log_log (SAT_LOG_LEVEL_DEBUG, - _("%s: Keypress value %i not managed by this function"), - __FUNCTION__, pKey->keyval); + _("%s:%s: Keypress value %i not managed by this function"), + __FILE__, __FUNCTION__, pKey->keyval); break; } @@ -3048,3 +3129,81 @@ return event_managed; } + + +/** \brief Maange PTT events + * \param ctrl Pointer to the radio controller data + * + * This function is used to manage PTT events, e.g. the user presses + * the spacebar. It is only useful for RIG_TYPE_TOGGLE_MAN. + * + * First, the function will try to lock the controller. If the lock is acquired + * the function checks the current PTT status. + * If PTT status is FALSE (off), it will set the TX frequency and set PTT to TRUE (on). + * If PTT status is TRUE (on) it will simply set the PTT to FALSE (off). + * + * \warning This function assumes that the radio supprot set/get PTT, otherwise + * ot makes no sense to use it! + */ +static void manage_ptt_event (GtkRigCtrl *ctrl) +{ + guint timeout = 1; + gboolean ptt = FALSE; + + + /* wait for controller to be idle or until the timeout triggers */ + while (timeout < 5) { + if (g_static_mutex_trylock(&(ctrl->busy)) == TRUE) { + timeout = 17; /* use an arbitrary value that is large enough */ + } + else { + /* wait for 100 msec */ + g_usleep (100000); + timeout++; + } + } + + if (timeout == 17) { + /* timeout did not expire, we've got the controller lock */ + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: Acquired controller lock"), + __FUNCTION__); + + if (ctrl->engaged == FALSE) { + sat_log_log (SAT_LOG_LEVEL_MSG, + _("%s: Controller not engaged; PTT event ignored (Hint: Enable the Engage button)"), + __FUNCTION__); + } + else { + + ptt = get_ptt (ctrl, ctrl->conf); + + if (ptt == FALSE) { + /* PTT is OFF => set TX freq then set PTT to ON */ + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: PTT is OFF => Set TX freq and PTT=ON"), + __FUNCTION__); + + exec_toggle_tx_cycle (ctrl); + set_ptt(ctrl, ctrl->conf, TRUE); + } + else { + /* PTT is ON => set to OFF */ + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: PTT is ON = Set PTT=OFF"), + __FUNCTION__); + + set_ptt(ctrl, ctrl->conf, FALSE); + } + } + + /* release controller lock */ + g_static_mutex_unlock(&(ctrl->busy)); + } + else { + sat_log_log (SAT_LOG_LEVEL_ERROR, + _("%s: Failed to acquire controller lock; PTT event not handled"), + __FUNCTION__); + } + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 09:22:33
|
Revision: 631 http://gpredict.svn.sourceforge.net/gpredict/?rev=631&view=rev Author: csete Date: 2010-07-11 09:22:27 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Simplified exec_toggle_tx_cycle() to only do something while PTT=FALSE and without any dial feedback since dial feedback makes no sense when using such radios. Modified Paths: -------------- trunk/ChangeLog trunk/src/gtk-rig-ctrl.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 08:12:54 UTC (rev 630) +++ trunk/ChangeLog 2010-07-11 09:22:27 UTC (rev 631) @@ -2,6 +2,11 @@ * data/satdata: Synchronise satellite database with Celestrak. + + * src/gtk-rig-ctrl.c: + Simplified exec_toggle_tx_cycle() to only do something while PTT=FALSE and + without any dial feedback since dial feedback makes no sense when using + such radios. 2010-07-09 Alexandru Csete <oz9aec at gmail.com> Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-11 08:12:54 UTC (rev 630) +++ trunk/src/gtk-rig-ctrl.c 2010-07-11 09:22:27 UTC (rev 631) @@ -1603,112 +1603,47 @@ * \param ctrl Pointer to the GtkRigCtrl widget. * * This function executes a transmit cycle when the primary device is of RIG_TYPE_TOGGLE_AUTO. + * This applies to radios that support split operation (e.g. TX on VHF, RX on UHF) where the + * frequency can not be set via CAT while PTT is active. + * + * If PTT=TRUE we are in TX mode and hence there is nothing to do since the frequency is kept + * constant. + * + * If PTT=FALSE we are in RX mode and we should update the TX frequency by using set_freq_toggle() + * + * For these kind of radios there is no dial-feedback for the TX frequency. */ static void exec_toggle_tx_cycle (GtkRigCtrl *ctrl) { gdouble readfreq=0.0, tmpfreq, satfreqd, satfrequ; gboolean ptt = TRUE; - gboolean dialchanged = FALSE; + - /* Dial feedback: - If radio device is engaged read frequency from radio and compare it to the - last set frequency. If different, it means that user has changed frequency - on the radio dial => update transponder knob - - Note: If ctrl->lasttxf = 0.0 the sync has been invalidated (e.g. user pressed "tune") - and no need to execute the dial feedback. - */ if (ctrl->engaged && ctrl->conf->ptt) { ptt = get_ptt (ctrl, ctrl->conf); } - if ((ctrl->engaged) && (ctrl->lasttxf > 0.0)) { - - if (ptt == TRUE) { - printf("PTT TRUE\n"); - if (!get_freq_toggle (ctrl, ctrl->conf, &readfreq)) { - /* error => use a passive value */ - readfreq = ctrl->lasttxf; - ctrl->errcnt++; - } - } else { - readfreq = ctrl->lasttxf; - } - - if (fabs (readfreq - ctrl->lasttxf) >= 1.0) { - dialchanged = TRUE; - printf("Dial Changed\n"); - printf("Readfreq %f\n",readfreq); - printf("lastfreq %f\n",ctrl->lasttxf); - /* user might have altered radio frequency => update transponder knob */ - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), readfreq); - ctrl->lasttxf = readfreq; - - /* doppler shift; only if we are tracking */ - if (ctrl->tracking) { - satfrequ = readfreq - ctrl->du + ctrl->conf->loup; - } - else { - satfrequ = readfreq + ctrl->conf->loup; - } - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->SatFreqUp), satfrequ); - - /* Follow with downlink if transponder is locked */ - if (ctrl->trsplock) { - track_uplink (ctrl); - } - } - } - - /* now, forward tracking */ - if (dialchanged) { - /* no need to forward track */ + + /* if we are in TX mode do nothing */ + if (ptt == TRUE) { return; } - - /* If we are tracking, calculate the radio freq by applying both dopper shift - and tranverter LO frequency. If we are not tracking, apply only LO frequency. - */ - satfreqd = gtk_freq_knob_get_value (GTK_FREQ_KNOB (ctrl->SatFreqDown)); - satfrequ = gtk_freq_knob_get_value (GTK_FREQ_KNOB (ctrl->SatFreqUp)); - if (ctrl->tracking) { - /* downlink */ - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd + ctrl->dd - ctrl->conf->lo); - /* uplink */ - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ + ctrl->du - ctrl->conf->loup); - } - else { - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd - ctrl->conf->lo); - gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ - ctrl->conf->loup); - } + /* Get the desired uplink frequency from controller */ tmpfreq = gtk_freq_knob_get_value(GTK_FREQ_KNOB(ctrl->RigFreqUp)); /* if device is engaged, send freq command to radio */ - if ((ctrl->engaged) && (fabs(ctrl->lasttxf - tmpfreq) >= 1.0)) { + if ((ctrl->engaged) && (fabs(ctrl->lasttxf - tmpfreq) >= 10.0)) { if (set_freq_toggle (ctrl, ctrl->conf, tmpfreq)) { /* reset error counter */ - ctrl->errcnt = 0; - - /* give radio a chance to set frequency */ - g_usleep (WR_DEL); - - /* The actual frequency migh be different from what we have set because - the tuning step is larger than what we work with (e.g. FT-817 has a - smallest tuning step of 10 Hz). Therefore we read back the actual - frequency from the rig. */ - if (ptt){ - get_freq_toggle (ctrl, ctrl->conf, &tmpfreq); - } - ctrl->lasttxf = tmpfreq; + ctrl->errcnt = 0; } else { ctrl->errcnt++; } + + /* store the last sent frequency even if an error occurred */ + ctrl->lasttxf = tmpfreq; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-11 08:13:02
|
Revision: 630 http://gpredict.svn.sourceforge.net/gpredict/?rev=630&view=rev Author: csete Date: 2010-07-11 08:12:54 +0000 (Sun, 11 Jul 2010) Log Message: ----------- Synchronise satellite database with Celestrak. Modified Paths: -------------- trunk/ChangeLog trunk/data/satdata/amateur.cat trunk/data/satdata/geo.cat trunk/data/satdata/geodetic.cat trunk/data/satdata/glo-ops.cat trunk/data/satdata/goes.cat trunk/data/satdata/intelsat.cat trunk/data/satdata/military.cat trunk/data/satdata/musson.cat trunk/data/satdata/satellites.dat trunk/data/satdata/sbas.cat trunk/data/satdata/science.cat trunk/data/satdata/tdrss.cat trunk/data/satdata/tle-new.cat trunk/data/satdata/visual.cat Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/ChangeLog 2010-07-11 08:12:54 UTC (rev 630) @@ -1,3 +1,9 @@ +2010-07-11 Alexandru Csete <oz9aec at gmail.com> + + * data/satdata: + Synchronise satellite database with Celestrak. + + 2010-07-09 Alexandru Csete <oz9aec at gmail.com> * src/radio-conf.h: Modified: trunk/data/satdata/amateur.cat =================================================================== --- trunk/data/satdata/amateur.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/amateur.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -62,7 +62,7 @@ 33493 33498 33499 -35693 35694 35870 36122 +36575 Modified: trunk/data/satdata/geo.cat =================================================================== --- trunk/data/satdata/geo.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/geo.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -45,7 +45,6 @@ 22911 22912 22921 -22931 23051 23124 23175 @@ -65,7 +64,6 @@ 23553 23571 23613 -23636 23653 23670 23680 @@ -101,7 +99,6 @@ 24742 24748 24769 -24786 24798 24808 24812 @@ -118,6 +115,7 @@ 25004 25010 25050 +25067 25071 25086 25126 @@ -135,7 +133,6 @@ 25460 25462 25473 -25491 25492 25495 25515 @@ -391,3 +388,14 @@ 35943 36032 36033 +36097 +36101 +36106 +36131 +36287 +36358 +36395 +36397 +36411 +36499 +36516 Modified: trunk/data/satdata/geodetic.cat =================================================================== --- trunk/data/satdata/geodetic.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/geodetic.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -7,3 +7,4 @@ 25398 27391 27392 +34602 Modified: trunk/data/satdata/glo-ops.cat =================================================================== --- trunk/data/satdata/glo-ops.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/glo-ops.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -17,3 +17,9 @@ 33466 33467 33468 +36111 +36112 +36113 +36400 +36401 +36402 Modified: trunk/data/satdata/goes.cat =================================================================== --- trunk/data/satdata/goes.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/goes.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -13,3 +13,4 @@ 26871 29155 35491 +36411 Modified: trunk/data/satdata/intelsat.cat =================================================================== --- trunk/data/satdata/intelsat.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/intelsat.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -15,6 +15,7 @@ 23816 23877 23915 +24732 24742 24812 24846 @@ -51,5 +52,7 @@ 32253 32388 32951 +33153 36097 36106 +36397 Modified: trunk/data/satdata/military.cat =================================================================== --- trunk/data/satdata/military.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/military.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -2,7 +2,6 @@ 22698 23125 23126 -23605 23814 24953 25634 @@ -10,11 +9,6 @@ 26102 26610 27434 -28492 -28494 -28495 -28496 -28497 29658 30773 30777 Modified: trunk/data/satdata/musson.cat =================================================================== --- trunk/data/satdata/musson.cat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/musson.cat 2010-07-11 08:12:54 UTC (rev 630) @@ -7,3 +7,4 @@ 28521 32052 35635 +36519 Modified: trunk/data/satdata/satellites.dat =================================================================== --- trunk/data/satdata/satellites.dat 2010-07-10 00:27:52 UTC (rev 629) +++ trunk/data/satdata/satellites.dat 2010-07-11 08:12:54 UTC (rev 630) @@ -1,8680 +1,8764 @@ -[25260] +[31125] VERSION=1.1 -NAME=SPOT 4 -NICKNAME=SPOT 4 -TLE1=1 25260U 98017A 09364.15266337 .00000038 00000-0 38903-4 0 7889 -TLE2=2 25260 98.6787 73.4511 0001357 75.2437 343.0344 14.19350902610144 +NAME=SAUDICOMSAT 3 +NICKNAME=SAUDICOMSAT 3 +TLE1=1 31125U 07012J 10191.62791711 .00000411 00000-0 88749-4 0 9949 +TLE2=2 31125 97.9510 249.9735 0046248 103.0810 257.5536 14.62640359172521 -[26390] +[25478] VERSION=1.1 -NAME=SIRIUS-1 -NICKNAME=SIRIUS-1 -TLE1=1 26390U 00035A 09361.61925365 .00000039 00000-0 10000-3 0 6100 -TLE2=2 26390 61.3474 253.6829 2725911 269.9260 59.4045 1.00279585 34789 +NAME=ORBCOMM FM24 [+] +NICKNAME=ORBCOMM FM24 [+] +TLE1=1 25478U 98053D 10190.83773413 -.00000098 00000-0 16156-4 0 9056 +TLE2=2 25478 45.0125 341.5915 0003194 136.4123 223.6980 14.29097167615402 -[24971] +[25982] VERSION=1.1 -NAME=IRS-1D -NICKNAME=IRS-1D -TLE1=1 24971U 97057A 09364.14916487 .00000022 00000-0 22562-4 0 9752 -TLE2=2 24971 98.2180 30.5295 0055081 70.5425 290.1702 14.32965799640892 +NAME=ORBCOMM FM32 [+] +NICKNAME=ORBCOMM FM32 [+] +TLE1=1 25982U 99065C 10191.28726353 -.00000269 00000-0 -50301-4 0 8882 +TLE2=2 25982 45.0226 140.5086 0007999 301.7412 58.2610 14.29374869552808 -[25418] +[28894] VERSION=1.1 -NAME=ORBCOMM FM15 [+] -NICKNAME=ORBCOMM FM15 [+] -TLE1=1 25418U 98046F 09363.59784878 .00000174 00000-0 12564-3 0 2721 -TLE2=2 25418 45.0001 72.3948 0004056 253.9833 106.0549 14.27685788594619 +NAME=SSETI EXPRESS (XO-53) +NICKNAME=XO-53 +TLE1=1 28894U 05043E 10191.25446410 .00000011 00000-0 11651-4 0 8125 +TLE2=2 28894 98.0077 74.3777 0016738 212.8767 147.1388 14.59738400250467 -[25285] +[33595] VERSION=1.1 -NAME=IRIDIUM 62 [+] -NICKNAME=IRIDIUM 62 [+] -TLE1=1 25285U 98021A 09363.31114662 .00000188 00000-0 60163-4 0 8128 -TLE2=2 25285 86.3945 283.6029 0002322 76.6705 283.4762 14.34216263614172 +NAME=EXPRESS-AM 44 +NICKNAME=EXPRESS-AM 44 +TLE1=1 33595U 09007A 10190.90957546 -.00000082 00000-0 10000-3 0 3558 +TLE2=2 33595 0.0377 227.5644 0001368 280.3017 96.3197 1.00272143 5193 -[25354] +[25291] VERSION=1.1 -NAME=CHINASTAR 1 -NICKNAME=CHINASTAR 1 -TLE1=1 25354U 98033A 09362.03972506 -.00000184 00000-0 10000-3 0 7035 -TLE2=2 25354 0.0299 255.9403 0002913 41.2701 261.2706 1.00271408 46972 +NAME=IRIDIUM 68 [+] +NICKNAME=IRIDIUM 68 [+] +TLE1=1 25291U 98021G 10191.18932999 -.00000069 00000-0 -31877-4 0 449 +TLE2=2 25291 86.3944 203.0426 0002689 82.4302 277.7174 14.34218155641792 -[27811] +[13923] VERSION=1.1 -NAME=HELLAS-SAT 2 -NICKNAME=HELLAS-SAT 2 -TLE1=1 27811U 03020A 09361.77536119 .00000176 00000-0 10000-3 0 340 -TLE2=2 27811 0.0365 264.6690 0002903 358.1733 151.6924 1.00274622 24178 +NAME=NOAA 8 [-] +NICKNAME=NOAA 8 [-] +TLE1=1 13923U 83022A 10191.53458944 .00000000 00000-0 17325-4 0 3432 +TLE2=2 13923 98.5224 217.8063 0016528 51.7273 308.5403 14.27741472420260 -[23571] +[24769] VERSION=1.1 -NAME=INTELSAT 706 (IS-706) -NICKNAME=INTELSAT 706 (IS-706) -TLE1=1 23571U 95023A 09356.87910115 .00000105 00000-0 10000-3 0 364 -TLE2=2 23571 0.0152 12.3824 0002516 242.6294 207.8725 1.00273184 53466 +NAME=BSAT-1A +NICKNAME=BSAT-1A +TLE1=1 24769U 97016B 10190.60985367 -.00000342 00000-0 10000-3 0 1194 +TLE2=2 24769 0.0587 268.3842 0002429 238.4343 109.7737 1.00268692 48489 -[12389] +[32062] VERSION=1.1 -NAME=SL-8 R/B -NICKNAME=SL-8 R/B -TLE1=1 12389U 81033B 09363.83131703 .00002910 00000-0 95091-4 0 5407 -TLE2=2 12389 82.9179 150.1179 0403823 265.3862 90.1135 14.78194288465890 +NAME=CBERS 2B +NICKNAME=CBERS 2B +TLE1=1 32062U 07042A 10191.27729205 -.00000042 00000-0 42976-6 0 343 +TLE2=2 32062 98.4548 267.1020 0031470 238.2607 121.5518 14.38571968147203 -[28485] +[6212] VERSION=1.1 -NAME=SWIFT -NICKNAME=SWIFT -TLE1=1 28485U 04047A 09363.93316833 .00000707 00000-0 28615-4 0 4714 -TLE2=2 28485 20.5612 295.8736 0014175 322.8188 37.1304 14.92629354278959 +NAME=OPS 8180 (RADCAT) +NICKNAME=OPS 8180 (RADCAT) +TLE1=1 06212U 72076A 10191.77175206 .00002539 00000-0 87834-4 0 545 +TLE2=2 06212 98.5570 264.4811 0004484 102.0050 258.1703 15.31086627182287 -[29107] +[27715] VERSION=1.1 -NAME=CLOUDSAT -NICKNAME=CLOUDSAT -TLE1=1 29107U 06016A 09363.49707074 .00000081 00000-0 27984-4 0 1682 -TLE2=2 29107 98.2003 304.7128 0001402 87.6582 272.4780 14.57117351195315 +NAME=GALAXY 12 (G-12) +NICKNAME=GALAXY 12 (G-12) +TLE1=1 27715U 03013B 10190.56924947 .00000086 00000-0 10000-3 0 3156 +TLE2=2 27715 0.0200 25.6848 0002288 85.4467 248.1870 1.00272053 26629 -[25736] +[27830] VERSION=1.1 -NAME=MUBLCOM -NICKNAME=MUBLCOM -TLE1=1 25736U 99026B 09362.80594674 .00000127 00000-0 47746-4 0 9129 -TLE2=2 25736 97.7736 277.4332 0005292 168.9889 191.1415 14.44622288558897 +NAME=BSAT-2C +NICKNAME=BSAT-2C +TLE1=1 27830U 03028A 10189.96031763 -.00000341 00000-0 10000-3 0 1622 +TLE2=2 27830 0.0943 249.5067 0002381 283.7132 209.1841 1.00270239 25951 -[28496] +[25170] VERSION=1.1 -NAME=ESSAIM-3 -NICKNAME=ESSAIM-3 -TLE1=1 28496U 04049E 09342.61919833 -.00000015 00000-0 60751-5 0 5878 -TLE2=2 28496 98.2942 308.6273 0009789 59.1704 301.0444 14.70161453266892 +NAME=IRIDIUM 56 [+] +NICKNAME=IRIDIUM 56 [+] +TLE1=1 25170U 98010B 10191.41236766 .00000055 00000-0 12644-4 0 5650 +TLE2=2 25170 86.3969 329.3575 0002427 86.0361 274.1114 14.34215290648594 -[902] +[35681] VERSION=1.1 -NAME=CALSPHERE 2 -NICKNAME=CALSPHERE 2 -TLE1=1 00902U 64063E 09363.47466763 .00000075 00000-0 10000-3 0 2410 -TLE2=2 00902 90.1548 333.2262 0019803 44.9018 315.3726 13.52470384 43762 +NAME=DEIMOS-1 +NICKNAME=DEIMOS-1 +TLE1=1 35681U 09041A 10191.70278601 .00000097 00000-0 24776-4 0 627 +TLE2=2 35681 98.0956 89.3624 0001559 103.9704 256.1688 14.69370668 50830 -[23711] +[28059] VERSION=1.1 -NAME=SURFSAT -NICKNAME=SURFSAT -TLE1=1 23711U 95059B 09363.47930865 .00000189 00000-0 45624-3 0 4093 -TLE2=2 23711 100.3104 0.4956 0368462 33.0600 329.2958 13.12573531678055 +NAME=CZ-4B R/B +NICKNAME=CZ-4B R/B +TLE1=1 28059U 03049C 10191.81428207 -.00000007 00000-0 10463-4 0 9170 +TLE2=2 28059 98.5743 325.5686 0052004 30.1411 330.2767 14.51471888356041 -[24842] +[36608] VERSION=1.1 -NAME=IRIDIUM 911 [-] -NICKNAME=IRIDIUM 911 [-] -TLE1=1 24842U 97030G 09363.54547070 .00000111 00000-0 26885-4 0 5466 -TLE2=2 24842 86.4438 52.5230 0016347 125.7179 234.5554 14.43208081659464 +NAME=OFEQ 9 +NICKNAME=OFEQ 9 +TLE1=1 36608U 10031A 10191.55844731 .00010865 00000-0 17830-3 0 653 +TLE2=2 36608 141.7807 29.1256 0177788 192.6367 166.9889 15.33809065 2739 -[22220] +[15362] VERSION=1.1 -NAME=SL-16 R/B -NICKNAME=SL-16 R/B -TLE1=1 22220U 92076B 09363.77069655 .00000183 00000-0 11635-3 0 732 -TLE2=2 22220 70.9992 36.8832 0011150 110.1211 250.1125 14.16152442884759 +NAME=NOVA 3 +NICKNAME=NOVA 3 +TLE1=1 15362U 84110A 10190.69416914 .00000051 00000-0 10000-3 0 1387 +TLE2=2 15362 89.9882 50.2108 0032915 19.0547 341.1800 13.22498392242328 -[32388] +[27948] VERSION=1.1 -NAME=HORIZONS 2 -NICKNAME=HORIZONS 2 -TLE1=1 32388U 07063B 09362.43134821 -.00000230 00000-0 10000-3 0 3136 -TLE2=2 32388 0.0350 268.9782 0002804 10.2883 258.9970 1.00272122 7567 +NAME=EUROBIRD 3 +NICKNAME=EUROBIRD 3 +TLE1=1 27948U 03043A 10191.88120266 .00000158 00000-0 10000-3 0 2581 +TLE2=2 27948 0.0460 336.4802 0000448 71.0420 231.5113 1.00270523 24965 -[25772] +[24931] VERSION=1.1 -NAME=GLOBALSTAR M047 -NICKNAME=GLOBALSTAR M047 -TLE1=1 25772U 99031C 09363.89547552 -.00000086 00000-0 10000-3 0 1644 -TLE2=2 25772 51.9930 143.7991 0002671 126.4013 233.7095 12.62276547486884 +NAME=EUTELSAT W75 +NICKNAME=EUTELSAT W75 +TLE1=1 24931U 97049A 10190.78979003 -.00000084 00000-0 10000-3 0 2015 +TLE2=2 24931 1.2978 78.0665 0010726 34.8736 174.2295 1.00272579 47135 -[15427] +[34779] VERSION=1.1 -NAME=NOAA 9 [P] -NICKNAME=NOAA 9 [P] -TLE1=1 15427U 84123A 09363.05336407 -.00000188 00000-0 -75555-4 0 9536 -TLE2=2 15427 98.4550 350.5979 0014266 215.5160 144.5061 14.15336133292520 +NAME=BEIDOU G2 +NICKNAME=BEIDOU G2 +TLE1=1 34779U 09018A 10191.01631324 -.00000002 00000-0 10000-3 0 3272 +TLE2=2 34779 0.1467 45.5089 0015388 177.9403 136.4261 1.00292451 4727 -[28190] +[24798] VERSION=1.1 -NAME=GPS BIIR-11 (DASS) -NICKNAME=GPS BIIR-11 (DASS) -TLE1=1 28190U 04009A 09361.86133251 .00000092 00000-0 10000-3 0 3855 -TLE2=2 28190 54.8713 154.6526 0060247 347.2880 12.5478 2.00562616 42337 +NAME=DFH 3-2 +NICKNAME=DFH 3-2 +TLE1=1 24798U 97021A 10191.22061043 .00000073 00000-0 10000-3 0 8239 +TLE2=2 24798 6.0036 66.0556 0011577 340.2685 19.5938 1.00174774 48226 -[36113] +[28638] VERSION=1.1 -NAME=COSMOS 2458 [GLONASS-M] -NICKNAME=COSMOS 2458 [GLONASS-M] -TLE1=1 36113U 09070C 09364.20065851 -.00000004 00000-0 00000+0 0 309 -TLE2=2 36113 64.7988 277.3400 0006160 289.4656 227.8221 2.13308232 338 +NAME=APSTAR 6 +NICKNAME=APSTAR 6 +TLE1=1 28638U 05012A 10191.65262584 -.00000314 00000-0 10000-3 0 7334 +TLE2=2 28638 0.0384 79.8046 0002483 50.0633 167.5530 1.00271266 44057 -[25288] +[28891] VERSION=1.1 -NAME=IRIDIUM 65 [+] -NICKNAME=IRIDIUM 65 [+] -TLE1=1 25288U 98021D 09363.33017426 .00000103 00000-0 29798-4 0 8130 -TLE2=2 25288 86.3954 283.5677 0001966 83.9659 276.1777 14.34215765614176 +NAME=TOPSAT +NICKNAME=TOPSAT +TLE1=1 28891U 05043B 10191.74453248 .00000042 00000-0 18156-4 0 2612 +TLE2=2 28891 98.0022 74.1776 0016477 207.5251 152.5092 14.59820269250557 -[25922] +[24278] VERSION=1.1 -NAME=GALAXY 27 (G-27) -NICKNAME=GALAXY 27 (G-27) -TLE1=1 25922U 99052A 09362.09204954 .00000082 00000-0 10000-3 0 5808 -TLE2=2 25922 0.0185 321.2650 0002454 314.2109 85.3672 1.00272284 37579 +NAME=JAS-2 (FO-29) +NICKNAME=FO-29 +TLE1=1 24278U 96046B 10191.10416615 -.00000023 00000-0 10232-4 0 3491 +TLE2=2 24278 98.5149 17.0662 0351473 64.4467 299.2568 13.52950947686205 -[26766] +[28982] VERSION=1.1 -NAME=INTELSAT 10 (IS-10) -NICKNAME=INTELSAT 10 (IS-10) -TLE1=1 26766U 01019A 09363.09326355 -.00000004 00000-0 10000-3 0 4907 -TLE2=2 26766 0.0115 205.4958 0002351 48.7630 305.4987 1.00272873 31626 +NAME=ST5-C +NICKNAME=ST5-C +TLE1=1 28982U 06008C 10191.34798376 .00009164 13773-5 35555-3 0 4124 +TLE2=2 28982 105.6647 219.0882 2316675 96.1931 290.5643 10.75700441167146 -[24841] +[27718] VERSION=1.1 -NAME=IRIDIUM 16 [-] -NICKNAME=IRIDIUM 16 [-] -TLE1=1 24841U 97030F 09363.23786516 .00000090 00000-0 24548-4 0 8903 -TLE2=2 24841 86.4011 50.5174 0002120 134.4758 225.6614 14.35313127656250 +NAME=ASIASAT 4 +NICKNAME=ASIASAT 4 +TLE1=1 27718U 03014A 10190.77687999 -.00000353 00000-0 10000-3 0 4425 +TLE2=2 27718 0.0062 41.4729 0000730 47.0770 240.9397 1.00271339 26566 -[22970] +[36607] VERSION=1.1 -NAME=TUBSAT B -NICKNAME=TUBSAT B -TLE1=1 22970U 94003B 09363.39052317 .00000051 00000-0 10000-3 0 2282 -TLE2=2 22970 82.5599 11.8751 0017167 117.3313 242.9556 13.16915130765678 +NAME=SL-24 DEB +NICKNAME=SL-24 DEB +TLE1=1 36607U 10030C 10191.16348052 .00002118 00000-0 86754-4 0 185 +TLE2=2 36607 97.4553 198.1613 0023489 273.3343 86.5208 15.25193085 2906 -[25331] +[36287] VERSION=1.1 -NAME=ECHOSTAR 4 -NICKNAME=ECHOSTAR 4 -TLE1=1 25331U 98028A 09363.05585334 -.00000225 00000-0 10000-3 0 1205 -TLE2=2 25331 1.5315 55.6887 0004605 205.5096 139.7462 1.00271323 42762 +NAME=BEIDOU G1 +NICKNAME=BEIDOU G1 +TLE1=1 36287U 10001A 10191.91045465 -.00000245 00000-0 10000-3 0 1431 +TLE2=2 36287 1.6356 327.0789 0000476 323.8129 110.0910 1.00274896 1842 -[24794] +[27818] VERSION=1.1 -NAME=IRIDIUM 6 [+] -NICKNAME=IRIDIUM 6 [+] -TLE1=1 24794U 97020C 09363.39117498 -.00000007 00000-0 -97055-5 0 6770 -TLE2=2 24794 86.3943 18.4601 0002146 84.3124 275.8312 14.34218602662368 +NAME=COSMOS 2398 +NICKNAME=COSMOS 2398 +TLE1=1 27818U 03023A 10191.28467689 .00000045 00000-0 33023-4 0 9709 +TLE2=2 27818 82.9491 103.0856 0029918 278.2584 81.5186 13.71967310355469 -[26464] +[24714] VERSION=1.1 -NAME=CLUSTER II-FM8 -NICKNAME=CLUSTER II-FM8 -TLE1=1 26464U 00045B 09364.25000000 .00001326 00000-0 00000+0 0 4198 -TLE2=2 26464 114.4207 192.8575 8728251 32.6500 357.4655 0.44227346 5405 +NAME=NAHUEL 1A +NICKNAME=NAHUEL 1A +TLE1=1 24714U 97002B 10190.35645757 -.00000086 00000-0 10000-3 0 1079 +TLE2=2 24714 2.7085 74.1377 0007823 27.5994 221.0734 0.99758003 49224 -[26626] +[25546] VERSION=1.1 -NAME=SIRIUS-3 -NICKNAME=SIRIUS-3 -TLE1=1 26626U 00077A 09360.95672545 -.00000105 00000-0 10000-3 0 5242 -TLE2=2 26626 64.2067 13.5320 2662544 270.6865 59.1988 1.00274457 33248 +NAME=BONUM 1 +NICKNAME=BONUM 1 +TLE1=1 25546U 98068A 10191.60195826 .00000083 00000-0 10000-3 0 6062 +TLE2=2 25546 0.0625 97.5404 0002544 323.8465 139.6626 1.00270871 42681 -[28915] +[20873] VERSION=1.1 -NAME=COSMOS 2419 (714) -NICKNAME=COSMOS 2419 (714) -TLE1=1 28915U 05050A 09363.14998428 .00000090 00000-0 10000-3 0 1233 -TLE2=2 28915 64.8650 157.3484 0007003 353.9069 15.3488 2.13101967 31220 +NAME=GALAXY 6 +NICKNAME=GALAXY 6 +TLE1=1 20873U 90091B 10189.53342510 -.00000262 00000-0 10000-3 0 4171 +TLE2=2 20873 7.1014 63.7384 0003288 25.2986 334.6459 0.99763181 66706 -[22826] +[15935] VERSION=1.1 -NAME=ITAMSAT (IO-26) -NICKNAME=IO-26 -TLE1=1 22826U 93061D 09363.62715442 .00000012 00000-0 21436-4 0 1547 -TLE2=2 22826 98.4576 311.8262 0009651 48.3171 311.8836 14.29536125847938 +NAME=OSCAR 30 +NICKNAME=OSCAR 30 +TLE1=1 15935U 85066A 10191.07058502 .00000028 00000-0 31260-4 0 6181 +TLE2=2 15935 90.0624 25.0436 0170495 131.8316 229.7524 13.35283970212462 -[23705] +[28629] VERSION=1.1 -NAME=SL-16 R/B -NICKNAME=SL-16 R/B -TLE1=1 23705U 95058B 09362.53861414 -.00000193 00000-0 -75196-4 0 62 -TLE2=2 23705 71.0196 350.5832 0011473 144.1688 216.0185 14.14869119731353 +NAME=EXPRESS-AM 2 +NICKNAME=EXPRESS-AM 2 +TLE1=1 28629U 05010A 10191.85228352 -.00000133 00000-0 10000-3 0 4313 +TLE2=2 28629 0.0415 209.3843 0000544 356.9107 109.1839 1.00271305 19349 -[3230] +[28361] VERSION=1.1 -NAME=SL-8 R/B -NICKNAME=SL-8 R/B -TLE1=1 03230U 68040B 09363.82364599 .00000138 00000-0 20864-4 0 8415 -TLE2=2 03230 74.0378 272.7375 0035043 228.0301 131.7880 14.84273126230273 +NAME=GPS BIIR-12 (DASS) +NICKNAME=GPS BIIR-12 (DASS) +TLE1=1 28361U 04023A 10190.60231766 -.00000074 00000-0 10000-3 0 4341 +TLE2=2 28361 55.4411 322.9616 0068114 176.3282 183.7318 2.00563575 44305 -[28187] +[26032] VERSION=1.1 -NAME=EUTELSAT W3A -NICKNAME=EUTELSAT W3A -TLE1=1 28187U 04008A 09360.84948200 .00000073 00000-0 10000-3 0 8781 -TLE2=2 28187 0.0716 4.4252 0003093 252.8225 151.0418 1.00273451 21253 +NAME=ARIRANG 1 (KOMPSAT-1) +NICKNAME=ARIRANG 1 (KOMPSAT-1) +TLE1=1 26032U 99070A 10191.68204738 .00000101 00000-0 26885-4 0 646 +TLE2=2 26032 97.8683 62.2435 0006517 83.7624 276.4349 14.65720030564397 -[27426] +[31307] VERSION=1.1 -NAME=DIRECTV 5 (TEMPO 1) -NICKNAME=DIRECTV 5 (TEMPO 1) -TLE1=1 27426U 02023A 09362.54183597 -.00000034 00000-0 10000-3 0 4324 -TLE2=2 27426 0.0170 257.7725 0003549 23.8290 260.4958 1.00272925 28025 +NAME=GALAXY 17 (G-17) +NICKNAME=GALAXY 17 (G-17) +TLE1=1 31307U 07016B 10191.47828715 -.00000170 00000-0 10000-3 0 5216 +TLE2=2 31307 0.0164 356.8535 0002821 116.8809 255.7275 1.00271854 11719 -[28230] +[33064] VERSION=1.1 -NAME=GP-B -NICKNAME=GP-B -TLE1=1 28230U 04014A 09362.94984351 .00000185 00000-0 24605-4 0 6786 -TLE2=2 28230 89.9363 156.6319 0002801 97.5189 262.6382 14.76007212306509 +NAME=ORBCOMM FM37 [S] +NICKNAME=ORBCOMM FM37 [S] +TLE1=1 33064U 08031E 10191.68772341 -.00000136 00000-0 10020-4 0 6320 +TLE2=2 33064 48.4454 60.0096 0007378 248.2107 111.8008 14.68556526110433 -[27378] +[27838] VERSION=1.1 -NAME=ECHOSTAR 7 -NICKNAME=ECHOSTAR 7 -TLE1=1 27378U 02006A 09362.57731146 .00000022 00000-0 10000-3 0 4655 -TLE2=2 27378 0.0193 355.4466 0001706 258.0908 292.5648 1.00272493 28757 +NAME=ORBVIEW 3 +NICKNAME=ORBVIEW 3 +TLE1=1 27838U 03030A 10191.89734884 .00002351 00000-0 55594-4 0 6481 +TLE2=2 27838 97.0058 241.4843 0002539 87.1337 18.9817 15.42780657395289 -[29505] +[7004] VERSION=1.1 -NAME=SJ-6C -NICKNAME=SJ-6C -TLE1=1 29505U 06046A 09364.18271506 .00000527 00000-0 59248-4 0 5766 -TLE2=2 29505 97.6904 5.9325 0004088 126.5212 233.6380 14.90695858173282 +NAME=SL-8 R/B +NICKNAME=SL-8 R/B +TLE1=1 07004U 73107B 10190.73187577 .00002578 00000-0 10389-3 0 3748 +TLE2=2 07004 73.9591 213.8825 0423807 345.5913 13.3456 14.69882658857201 -[22245] +[35865] VERSION=1.1 -NAME=GORIZONT 27 -NICKNAME=GORIZONT 27 -TLE1=1 22245U 92082A 09356.61247811 -.00000203 00000-0 10000-3 0 5007 -TLE2=2 22245 11.6474 42.8744 0015690 231.7718 128.0784 1.00142453 66832 +NAME=METEOR-M 1 +NICKNAME=METEOR-M 1 +TLE1=1 35865U 09049A 10191.77914140 .00000176 00000-0 10000-3 0 4593 +TLE2=2 35865 98.7553 245.4075 0002251 320.8437 39.2530 14.21830889 42079 -[22877] +[694] VERSION=1.1 -NAME=GPS BIIA-23 (PRN 04) -NICKNAME=GPS BIIA-23 (PRN 04) -TLE1=1 22877U 93068A 09362.60213294 .00000113 00000-0 10000-3 0 56 -TLE2=2 22877 53.8393 210.4506 0090304 32.2406 328.3886 2.00571992118520 +NAME=ATLAS CENTAUR 2 +NICKNAME=ATLAS CENTAUR 2 +TLE1=1 00694U 63047A 10191.49343726 .00000415 00000-0 44864-4 0 3173 +TLE2=2 00694 30.3562 351.7141 0615582 124.8977 241.1032 13.95233226327716 -[25043] +[1361] VERSION=1.1 -NAME=IRIDIUM 38 [-] -NICKNAME=IRIDIUM 38 [-] -TLE1=1 25043U 97069E 09363.31253946 -.00000049 00000-0 -24330-4 0 8731 -TLE2=2 25043 86.3937 80.9136 0001998 108.9543 251.1859 14.34716899635586 +NAME=LCS 1 +NICKNAME=LCS 1 +TLE1=1 01361U 65034C 10191.51458001 .00000009 00000-0 10000-3 0 2025 +TLE2=2 01361 32.1445 317.0801 0012857 302.7857 57.1405 9.89278687633814 -[23439] +[23343] VERSION=1.1 -NAME=RADIO ROSTO (RS-15) -NICKNAME=RS-15 -TLE1=1 23439U 94085A 09362.92361525 -.00000039 00000-0 10000-3 0 2743 -TLE2=2 23439 64.8213 309.9057 0153791 14.9053 345.6329 11.27553921618078 +NAME=SL-16 R/B +NICKNAME=SL-16 R/B +TLE1=1 23343U 94074B 10191.09543962 .00000176 00000-0 33854-4 0 8315 +TLE2=2 23343 98.0778 159.9190 0006027 262.5860 97.4694 14.75035703843047 -[26089] +[26998] VERSION=1.1 -NAME=GARUDA 1 -NICKNAME=GARUDA 1 -TLE1=1 26089U 00011A 09361.13122034 -.00000331 00000-0 10000-3 0 5068 -TLE2=2 26089 1.2891 251.0964 0002979 41.3171 333.5710 1.00266819 36205 +NAME=TIMED +NICKNAME=TIMED +TLE1=1 26998U 01055B 10191.81409673 .00000033 00000-0 82395-5 0 6192 +TLE2=2 26998 74.0748 301.3780 0001903 292.5801 67.5202 14.84186529465171 -[27941] +[24786] VERSION=1.1 -NAME=NIGERIASAT 1 -NICKNAME=NIGERIASAT 1 -TLE1=1 27941U 03042C 09364.15772996 -.00000004 00000-0 79771-5 0 1050 -TLE2=2 27941 97.9162 231.3181 0010441 235.5893 124.4322 14.63049567334196 +NAME=GOES 10 +NICKNAME=GOES 10 +TLE1=1 24786U 97019A 10191.20292043 .00000080 00000-0 10000-3 0 5120 +TLE2=2 24786 4.4761 68.4398 0008319 27.6947 332.1838 0.99068703 48377 -[28393] +[6073] VERSION=1.1 -NAME=AMAZONAS -NICKNAME=AMAZONAS -TLE1=1 28393U 04031A 09362.03111683 -.00000259 00000-0 00000+0 0 7080 -TLE2=2 28393 0.0429 45.9737 0002736 266.4367 94.4209 1.00271260 19815 +NAME=COSMOS 482 DESCENT CRAFT +NICKNAME=COSMOS 482 DESCENT CRAFT +TLE1=1 06073U 72023E 10191.77545591 .00013066 37802-5 96209-4 0 841 +TLE2=2 06073 52.0807 140.4129 2165047 107.8329 276.9271 11.26702262 58945 -[28916] +[25732] VERSION=1.1 -NAME=COSMOS 2418 (713) -NICKNAME=COSMOS 2418 (713) -TLE1=1 28916U 05050B 09363.66459068 .00000085 00000-0 10000-3 0 1170 -TLE2=2 28916 64.8834 157.3704 0017604 342.5857 16.7629 2.13104992 31220 +NAME=CZ-4B R/B +NICKNAME=CZ-4B R/B +TLE1=1 25732U 99025C 10191.35171728 -.00000015 00000-0 13668-4 0 4338 +TLE2=2 25732 98.6936 162.2581 0038224 125.8328 234.6410 14.17210049577687 -[32763] +[27399] VERSION=1.1 -NAME=ICO G1 -NICKNAME=ICO G1 -TLE1=1 32763U 08016A 09362.49172793 -.00000148 00000-0 10000-3 0 3697 -TLE2=2 32763 5.3170 330.4055 0003042 300.9855 269.8793 1.00271380 6280 +NAME=JCSAT-2A +NICKNAME=JCSAT-2A +TLE1=1 27399U 02015A 10190.45162843 -.00000158 00000-0 10000-3 0 4378 +TLE2=2 27399 0.0265 104.8658 0001924 6.1021 132.8853 1.00271187 30384 -[26892] +[25287] VERSION=1.1 -NAME=COSMOS 2379 -NICKNAME=COSMOS 2379 -TLE1=1 26892U 01037A 09363.02965856 .00000125 00000-0 10000-3 0 4739 -TLE2=2 26892 5.3186 67.0063 0001594 199.9139 218.2869 1.00303543 30563 +NAME=IRIDIUM 64 [+] +NICKNAME=IRIDIUM 64 [+] +TLE1=1 25287U 98021C 10191.16395503 -.00000035 00000-0 -19414-4 0 105 +TLE2=2 25287 86.3948 203.0117 0002606 80.3182 279.8298 14.34218497641799 -[25276] +[25558] VERSION=1.1 -NAME=IRIDIUM 60 [+] -NICKNAME=IRIDIUM 60 [+] -TLE1=1 25276U 98019E 09363.41946242 -.00000011 00000-0 -10834-4 0 8502 -TLE2=2 25276 86.3956 346.7164 0002319 83.0970 277.0476 14.34215391615237 +NAME=SATMEX 5 +NICKNAME=SATMEX 5 +TLE1=1 25558U 98070A 10190.34542184 -.00000005 00000-0 10000-3 0 6561 +TLE2=2 25558 0.0348 34.6287 0002324 70.1254 189.9793 1.00273503 42667 -[26610] +[33313] VERSION=1.1 -NAME=STRV 1C -NICKNAME=STRV 1C -TLE1=1 26610U 00072C 09361.33735694 .00000275 00000-0 10000-3 0 149 -TLE2=2 26610 6.2560 220.7472 7341834 192.5724 126.5167 2.03455323 67750 +NAME=RAPIDEYE 5 +NICKNAME=RAPIDEYE 5 +TLE1=1 33313U 08040B 10191.85032290 .00000003 00000-0 73719-5 0 879 +TLE2=2 33313 97.9531 278.1483 0018607 158.3742 201.8244 14.79925177100637 -[28935] +[10953] VERSION=1.1 -NAME=ECHOSTAR 10 -NICKNAME=ECHOSTAR 10 -TLE1=1 28935U 06003A 09362.54183635 -.00000033 00000-0 10000-3 0 8250 -TLE2=2 28935 0.0234 2.9312 0001738 247.3439 291.7061 1.00271458 14207 +NAME=GOES 3 [P] +NICKNAME=GOES 3 [P] +TLE1=1 10953U 78062A 10190.46951341 -.00000091 00000-0 10000-3 0 317 +TLE2=2 10953 14.4798 356.8684 0003831 34.4127 316.5811 1.00277876 70548 -[25158] +[26352] VERSION=1.1 -NAME=ORBCOMM FM03 [-] -NICKNAME=ORBCOMM FM03 [-] -TLE1=1 25158U 98007B 09363.24422080 .00000018 00000-0 61935-4 0 615 -TLE2=2 25158 107.9628 149.6824 0052465 310.1867 49.4671 14.25499562617314 +NAME=GOES 11 +NICKNAME=GOES 11 +TLE1=1 26352U 00022A 10191.34709594 .00000094 00000-0 10000-3 0 9105 +TLE2=2 26352 0.4315 261.7854 0004000 261.7094 114.3190 1.00273773 37299 -[26483] +[14050] VERSION=1.1 -NAME=SIRIUS-2 -NICKNAME=SIRIUS-2 -TLE1=1 26483U 00051A 09362.28043970 .00000110 00000-0 10000-3 0 2878 -TLE2=2 26483 63.7605 133.5441 2693045 268.8572 60.5036 1.00284251 34123 +NAME=GOES 6 [-] +NICKNAME=GOES 6 [-] +TLE1=1 14050U 83041A 10189.60143316 .00000029 00000-0 10000-3 0 5754 +TLE2=2 14050 13.7799 15.9941 0003764 30.6206 329.4310 1.00236165157687 -[24901] +[28626] VERSION=1.1 -NAME=AGILA 2 -NICKNAME=AGILA 2 -TLE1=1 24901U 97042A 09362.32795877 -.00000212 00000-0 10000-3 0 9413 -TLE2=2 24901 0.0421 200.2652 0005192 78.7317 81.9536 1.00270457 45267 +NAME=XM-3 (RHYTHM) +NICKNAME=XM-3 (RHYTHM) +TLE1=1 28626U 05008A 10191.13190716 -.00000200 00000-0 00000+0 0 7582 +TLE2=2 28626 0.0438 269.6369 0000272 236.2617 104.4406 1.00271106 19692 -[23710] +[33051] VERSION=1.1 -NAME=RADARSAT-1 -NICKNAME=RADARSAT-1 -TLE1=1 23710U 95059A 09364.14236281 .00000169 00000-0 82351-4 0 8976 -TLE2=2 23710 98.5799 8.1537 0001009 88.5535 347.6168 14.29982239738811 +NAME=CHINASAT 9 +NICKNAME=CHINASAT 9 +TLE1=1 33051U 08028A 10190.89650928 -.00000241 00000-0 10000-3 0 6065 +TLE2=2 33051 0.0368 79.7482 0006839 13.5936 249.3000 1.00269889 7650 -[25770] +[33749] VERSION=1.1 -NAME=GLOBALSTAR M025 -NICKNAME=GLOBALSTAR M025 -TLE1=1 25770U 99031A 09363.53901871 -.00000086 00000-0 10000-3 0 886 -TLE2=2 25770 51.9935 145.3010 0002575 122.4405 237.6720 12.62268341486837 +NAME=NSS-9 +NICKNAME=NSS-9 +TLE1=1 33749U 09008A 10190.24973398 .00000080 00000-0 00000+0 0 2539 +TLE2=2 33749 0.0087 11.1629 0001085 132.5981 56.2206 1.00274592 5181 -[28463] +[33596] VERSION=1.1 -NAME=EXPRESS-AM 1 -NICKNAME=EXPRESS-AM 1 -TLE1=1 28463U 04043A 09361.77578059 .00000174 00000-0 10000-3 0 6219 -TLE2=2 28463 0.0398 150.5147 0002033 129.1946 135.9719 1.00273620 18902 +NAME=EXPRESS-MD1 +NICKNAME=EXPRESS-MD1 +TLE1=1 33596U 09007B 10191.85228291 -.00000134 00000-0 10000-3 0 3954 +TLE2=2 33596 0.0119 233.5699 0002427 225.6681 216.3370 1.00271382 5237 -[24906] +[26382] VERSION=1.1 -NAME=IRIDIUM 23 [+] -NICKNAME=IRIDIUM 23 [+] -TLE1=1 24906U 97043D 09363.36527520 .00000094 00000-0 26427-4 0 9038 -TLE2=2 24906 86.3948 315.0796 0002280 81.0143 279.1334 14.34216374646999 +NAME=FENGYUN 2B +NICKNAME=FENGYUN 2B +TLE1=1 26382U 00032A 10189.73184168 .00000050 00000-0 10000-3 0 2894 +TLE2=2 26382 5.2741 67.6728 0002953 235.1295 124.7076 1.00072178 36736 -[27651] +[27499] VERSION=1.1 -NAME=SORCE -NICKNAME=SORCE -TLE1=1 27651U 03004A 09363.87219223 .00000117 00000-0 30075-4 0 879 -TLE2=2 27651 39.9986 314.1068 0026730 265.3470 94.4279 14.82242671375338 +NAME=HOT BIRD 6 +NICKNAME=HOT BIRD 6 +TLE1=1 27499U 02038A 10189.94090319 .00000096 00000-0 10000-3 0 7311 +TLE2=2 27499 0.0569 278.8905 0002258 198.1322 161.4619 1.00273045 28870 -[27431] +[26609] VERSION=1.1 -NAME=FENGYUN 1D -NICKNAME=FENGYUN 1D -TLE1=1 27431U 02024B 09364.02846458 .00000042 00000-0 48324-4 0 7689 -TLE2=2 27431 98.6459 345.7661 0014937 215.9394 144.0820 14.09287997392390 +NAME=PHASE 3D (AO-40) +NICKNAME=AO-40 +TLE1=1 26609U 00072B 10189.53814780 -.00000004 00000-0 00000+0 0 4031 +TLE2=2 26609 9.5415 324.4504 7971662 327.0903 2.1817 1.25585038 44489 -[25169] +[25152] VERSION=1.1 -NAME=IRIDIUM 52 [+] -NICKNAME=IRIDIUM 52 [+] -TLE1=1 25169U 98010A 09363.36922748 .00000103 00000-0 29802-4 0 5943 -TLE2=2 25169 86.3939 49.9859 0002359 86.8313 273.3152 14.34219311620948 +NAME=BRASILSAT B3 +NICKNAME=BRASILSAT B3 +TLE1=1 25152U 98006A 10191.16252339 -.00000243 00000-0 10000-3 0 1964 +TLE2=2 25152 0.0485 192.7037 0001839 4.4621 74.2806 1.00268679 45590 -[25634] +[25986] VERSION=1.1 -NAME=ARGOS -NICKNAME=ARGOS -TLE1=1 25634U 99008A 09363.64907227 .00000071 00000-0 56018-4 0 8984 -TLE2=2 25634 98.9881 43.7100 0010852 108.2884 251.9462 14.18918526561766 +NAME=ORBCOMM FM34 [+] +NICKNAME=ORBCOMM FM34 [+] +TLE1=1 25986U 99065G 10191.24280122 .00000034 00000-0 67802-4 0 8670 +TLE2=2 25986 45.0394 146.5940 0005895 274.2036 85.8107 14.28967566552787 -[15677] +[26719] VERSION=1.1 -NAME=GSTAR 1 -NICKNAME=GSTAR 1 -TLE1=1 15677U 85035A 09363.15523025 -.00000087 00000-0 10000-3 0 2196 -TLE2=2 15677 11.1048 48.6038 0008603 261.2249 98.6528 1.00272228 64939 +NAME=EUROBIRD 1 +NICKNAME=EUROBIRD 1 +TLE1=1 26719U 01011A 10190.86818260 .00000156 00000-0 10000-3 0 7453 +TLE2=2 26719 0.0654 351.0672 0003211 120.1695 157.4937 1.00269584 34218 -[35931] +[12458] VERSION=1.1 -NAME=OCEANSAT 2 -NICKNAME=OCEANSAT 2 -TLE1=1 35931U 09051A 09363.82759338 .00006026 00000-0 15388-2 0 1805 -TLE2=2 35931 98.3338 97.6288 0002107 332.4523 27.5932 14.50844901 14143 +NAME=NOVA I +NICKNAME=NOVA I +TLE1=1 12458U 81044A 10191.26171281 .00000050 00000-0 10000-3 0 694 +TLE2=2 12458 90.0723 118.9388 0015038 146.2429 213.9662 13.22719024407142 -[35756] +[10457] VERSION=1.1 -NAME=OPTUS D3 -NICKNAME=OPTUS D3 -TLE1=1 35756U 09044B 09362.29849488 -.00000124 00000-0 10000-3 0 943 -TLE2=2 35756 0.0473 32.8448 0003512 260.2849 67.2447 1.00271437 1335 +NAME=TRANSAT +NICKNAME=TRANSAT +TLE1=1 10457U 77106A 10190.62449276 .00000072 00000-0 10000-3 0 511 +TLE2=2 10457 89.6936 236.5456 0023278 232.7670 127.1354 13.48281842608176 -[32266] +[24819] VERSION=1.1 -NAME=GLOBALSTAR M068 -NICKNAME=GLOBALSTAR M068 -TLE1=1 32266U 07048D 09363.14804269 -.00000086 00000-0 10000-3 0 7642 -TLE2=2 32266 51.9846 236.8386 0001118 89.3944 270.7055 12.62255342104236 +NAME=INMARSAT 3-F4 +NICKNAME=INMARSAT 3-F4 +TLE1=1 24819U 97027A 10191.40557656 -.00000282 00000-0 10000-3 0 1808 +TLE2=2 24819 0.5881 73.8317 0004896 36.7623 269.6618 1.00273160 48067 -[26113] +[34839] VERSION=1.1 -NAME=IMAGE -NICKNAME=IMAGE -TLE1=1 26113U 00017A 09362.41916421 .00000407 00000-0 10000-3 0 9107 -TLE2=2 26113 91.2968 214.4177 7308144 262.4913 17.2010 1.68637610 60094 +NAME=YAOGAN 6 +NICKNAME=YAOGAN 6 +TLE1=1 34839U 09021A 10191.83535513 .00000482 00000-0 26722-4 0 3906 +TLE2=2 34839 97.5934 268.1369 0002399 134.7768 1.2227 15.18541879 67477 -[21118] +[27825] VERSION=1.1 -NAME=MOLNIYA 1-80 -NICKNAME=MOLNIYA 1-80 -TLE1=1 21118U 91012A 09361.86008636 .00001647 00000-0 10000-3 0 7329 -TLE2=2 21118 61.8655 239.9714 7236717 255.3380 21.0579 2.00802958138224 +NAME=THURAYA-2 +NICKNAME=THURAYA-2 +TLE1=1 27825U 03026A 10190.60569102 .00000143 00000-0 10000-3 0 8042 +TLE2=2 27825 2.8161 355.0168 0004610 113.5940 80.8967 1.00272325 25980 -[25884] +[33379] VERSION=1.1 -NAME=GLOBALSTAR M027 -NICKNAME=GLOBALSTAR M027 -TLE1=1 25884U 99043B 09363.20015064 -.00000086 00000-0 10000-3 0 744 -TLE2=2 25884 52.0099 283.8423 0000337 50.0962 309.9937 12.62267388478261 +NAME=COSMOS 2443 (725) +NICKNAME=COSMOS 2443 (725) +TLE1=1 33379U 08046B 10190.93213259 .00000045 00000-0 10000-3 0 5021 +TLE2=2 33379 64.8024 150.3477 0020391 188.7738 208.7451 2.13102490 13918 -[28899] +[32253] VERSION=1.1 -NAME=INMARSAT 4-F2 -NICKNAME=INMARSAT 4-F2 -TLE1=1 28899U 05044A 09361.84511909 .00000163 00000-0 10000-3 0 9999 -TLE2=2 28899 2.2290 318.9180 0002862 311.7144 155.1696 1.00275290 15209 +NAME=INTELSAT 11 (IS-11) +NICKNAME=INTELSAT 11 (IS-11) +TLE1=1 32253U 07044B 10190.94042183 -.00000263 00000-0 00000+0 0 3975 +TLE2=2 32253 0.0015 115.0437 0003253 356.7337 111.5213 1.00270303 10158 -[24948] +[20776] VERSION=1.1 -NAME=IRIDIUM 28 [-] -NICKNAME=IRIDIUM 28 [-] -TLE1=1 24948U 97051E 09363.48977751 .00000122 00000-0 36566-4 0 7171 -TLE2=2 24948 86.3953 346.8666 0002372 93.7038 266.4434 14.34285938643577 +NAME=SKYNET 4C +NICKNAME=SKYNET 4C +TLE1=1 20776U 90079A 10190.94853751 -.00000031 00000-0 10000-3 0 1159 +TLE2=2 20776 10.6325 43.3131 0003004 78.4927 145.9820 1.00247439 72570 -[4327] +[26038] VERSION=1.1 -NAME=SERT 2 -NICKNAME=SERT 2 -TLE1=1 04327U 70009A 09362.61762740 .00000032 00000-0 10000-3 0 1042 -TLE2=2 04327 99.1822 223.6319 0004850 174.4529 185.6634 13.58232265977197 +NAME=GALAXY 11 (G-11) +NICKNAME=GALAXY 11 (G-11) +TLE1=1 26038U 99071A 10190.98083753 .00000161 00000-0 10000-3 0 9182 +TLE2=2 26038 0.0415 169.3827 0000405 43.8031 100.5144 1.00274084 38737 -[33460] +[28654] VERSION=1.1 -NAME=EUTELSAT W2M -NICKNAME=EUTELSAT W2M -TLE1=1 33460U 08065B 09360.85074245 .00000045 00000-0 10000-3 0 1780 -TLE2=2 33460 0.0549 317.1320 0003142 283.0528 164.6551 1.00273577 3789 +NAME=NOAA 18 +NICKNAME=NOAA 18 +TLE1=1 28654U 05018A 10191.41126904 .00000286 00000-0 18274-3 0 4017 +TLE2=2 28654 98.9499 137.6085 0014285 352.0345 8.0604 14.11370769264714 -[25531] +[26631] VERSION=1.1 -NAME=IRIDIUM 83 [+] -NICKNAME=IRIDIUM 83 [+] -TLE1=1 25531U 98066E 09363.20433287 .00000095 00000-0 26683-4 0 7738 -TLE2=2 25531 86.3931 49.8915 0002359 84.0687 276.0781 14.34218541583499 +NAME=EROS A1 +NICKNAME=EROS A1 +TLE1=1 26631U 00079A 10191.79361075 .00001257 00000-0 62787-4 0 871 +TLE2=2 26631 97.4439 257.1860 0010576 75.8087 44.7237 15.19261290533496 -[10953] +[14780] VERSION=1.1 -NAME=GOES 3 [P] -NICKNAME=GOES 3 [P] -TLE1=1 10953U 78062A 09362.02796546 -.00000080 00000-0 10000-3 0 7531 -TLE2=2 10953 14.4222 358.4948 0003950 335.5733 24.4217 1.00267970 68615 +NAME=LANDSAT 5 +NICKNAME=LANDSAT 5 +TLE1=1 14780U 84021A 10191.79553713 -.00000015 00000-0 66456-5 0 9604 +TLE2=2 14780 98.1979 259.3196 0003120 6.0381 354.0841 14.57115883401973 -[27373] +[11574] VERSION=1.1 -NAME=IRIDIUM 90 [S] -NICKNAME=IRIDIUM 90 [S] -TLE1=1 27373U 02005B 09363.20624916 .00000076 00000-0 16789-4 0 3295 -TLE2=2 27373 86.4448 49.7300 0007281 71.1491 289.0488 14.42953635418118 +NAME=SL-8 R/B +NICKNAME=SL-8 R/B +TLE1=1 11574U 79089B 10191.51063345 -.00000004 00000-0 69597-5 0 6218 +TLE2=2 11574 74.0641 211.9472 0015319 41.0824 319.1479 14.39639863612427 -[27561] +[26610] VERSION=1.1 -NAME=RUBIN-3 & SL-8 R/B -NICKNAME=RUBIN-3 & SL-8 R/B -TLE1=1 27561U 02054C 09363.12215527 .00000012 00000-0 13122-4 0 8634 -TLE2=2 27561 97.9323 188.4871 0047844 356.8633 3.2261 14.53785186375832 +NAME=STRV 1C +NICKNAME=STRV 1C +TLE1=1 26610U 00072C 10189.32888951 -.00000006 00000-0 00000+0 0 859 +TLE2=2 26610 6.1129 149.1683 7348333 326.4335 3.5289 2.03459579 71688 -[7530] +[36499] VERSION=1.1 -NAME=OSCAR 7 (AO-7) -NICKNAME=AO-7 -TLE1=1 07530U 74089B 09363.93352604 -.00000027 00000-0 10000-3 0 6661 -TLE2=2 07530 101.4130 21.3081 0011819 246.2034 113.7797 12.53577302607242 +NAME=ECHOSTAR 14 +NICKNAME=ECHOSTAR 14 +TLE1=1 36499U 10010A 10190.43764712 .00000008 00000-0 00000+0 0 1289 +TLE2=2 36499 0.0060 332.9028 0002793 129.8505 223.1608 1.00272595 1157 -[25721] +[23757] VERSION=1.1 -NAME=ABRIXAS -NICKNAME=ABRIXAS -TLE1=1 25721U 99022A 09363.21028808 .00000552 00000-0 39318-4 0 7379 -TLE2=2 25721 48.4364 52.6034 0020392 6.2656 353.8542 15.20392990590137 +NAME=RXTE (XTE) +NICKNAME=RXTE (XTE) +TLE1=1 23757U 95074A 10190.96050468 .00001073 00000-0 21464-4 0 1677 +TLE2=2 23757 22.9785 150.6154 0008494 167.4442 192.6274 15.28112021805146 -[16908] +[25040] VERSION=1.1 -NAME=EGP -NICKNAME=EGP -TLE1=1 16908U 86061A 09363.84007590 -.00000083 00000-0 10000-3 0 985 -TLE2=2 16908 50.0107 277.4336 0011092 356.0978 3.9769 12.44463188731963 +NAME=IRIDIUM 41 [+] +NICKNAME=IRIDIUM 41 [+] +TLE1=1 25040U 97069B 10191.39674345 .00000038 00000-0 64102-5 0 760 +TLE2=2 25040 86.3946 0.8839 0002306 81.0242 279.1243 14.34218086663140 -[25395] +[32394] VERSION=1.1 -NAME=FASAT B -NICKNAME=FASAT B -TLE1=1 25395U 98043B 09363.12915969 -.00000014 00000-0 11467-4 0 6290 -TLE2=2 25395 98.3159 24.0886 0003053 13.2210 346.9060 14.24372274596193 +NAME=COSMOS 2435 (722) +NICKNAME=COSMOS 2435 (722) +TLE1=1 32394U 07065B 10190.89439940 -.00000008 00000-0 00000+0 0 4753 +TLE2=2 32394 65.2230 30.2020 0004324 79.9824 95.2105 2.13103285 19681 -[33154] +[4507] VERSION=1.1 -NAME=BADR-6 -NICKNAME=BADR-6 -TLE1=1 33154U 08034B 09361.79764013 .00000169 00000-0 10000-3 0 2574 -TLE2=2 33154 0.0469 328.6723 0004607 323.1463 117.7649 1.00275456 5456 +NAME=NNSS 19 +NICKNAME=NNSS 19 +TLE1=1 04507U 70067A 10191.84118848 .00000007 00000-0 -53629-5 0 2799 +TLE2=2 04507 89.8533 306.1859 0174311 40.4884 320.9079 13.50169026962124 -[25624] +[26624] VERSION=1.1 -NAME=GLOBALSTAR M038 -NICKNAME=GLOBALSTAR M038 -TLE1=1 25624U 99004D 09363.17838420 -.00000086 00000-0 10000-3 0 1389 -TLE2=2 25624 52.0031 283.1235 0001268 52.4136 307.6832 12.62271860503152 +NAME=ANIK F1 +NICKNAME=ANIK F1 +TLE1=1 26624U 00076A 10188.35295096 -.00000061 00000-0 10000-3 0 6124 +TLE2=2 26624 0.0222 101.1251 0002541 332.8865 230.9586 1.00272890 35332 -[26900] +[21088] VERSION=1.1 -NAME=INTELSAT 902 (IS-902) -NICKNAME=INTELSAT 902 (IS-902) -TLE1=1 26900U 01039A 09358.88692542 .00000056 00000-0 10000-3 0 4988 -TLE2=2 26900 0.0143 30.3051 0003295 256.1038 188.4095 1.00272991 30507 +NAME=SL-8 R/B +NICKNAME=SL-8 R/B +TLE1=1 21088U 91006B 10191.28064178 .00000018 00000-0 25055-5 0 7576 +TLE2=2 21088 82.9413 103.4424 0021528 208.6031 151.3946 13.76745132976903 -[21111] +[31124] VERSION=1.1 -NAME=COSMOS 2133 -NICKNAME=COSMOS 2133 -TLE1=1 21111U 91010A 09355.63827548 -.00000132 00000-0 10000-3 0 2176 -TLE2=2 21111 11.6265 39.9988 0003395 339.0959 20.8842 1.00266259 69069 +NAME=SAUDICOMSAT 5 +NICKNAME=SAUDICOMSAT 5 +TLE1=1 31124U 07012H 10191.50663250 .00000401 00000-0 89121-4 0 9877 +TLE2=2 31124 97.9473 246.8147 0054818 111.3935 249.3127 14.61105183172326 -[23027] +[33499] VERSION=1.1 -NAME=GPS BIIA-24 (PRN 06) -NICKNAME=GPS BIIA-24 (PRN 06) -TLE1=1 23027U 94016A 09362.80668689 .00000067 00000-0 10000-3 0 151 -TLE2=2 23027 53.5221 147.4683 0060191 291.2303 68.1031 2.00564144115837 +NAME=KKS-1 +NICKNAME=KKS-1 +TLE1=1 33499U 09002H 10191.32857652 -.00000025 00000-0 39812-5 0 1571 +TLE2=2 33499 98.0622 301.2655 0010198 159.8854 200.2742 14.70815423 78353 -[27436] +[32294] VERSION=1.1 -NAME=COSMOS 2389 -NICKNAME=COSMOS 2389 -TLE1=1 27436U 02026A 09363.90107829 .00000042 00000-0 27541-4 0 9516 -TLE2=2 27436 82.9501 297.8645 0047763 114.2819 246.3330 13.74737553380864 +NAME=SKYNET 5B +NICKNAME=SKYNET 5B +TLE1=1 32294U 07056B 10190.93578215 .00000105 00000-0 10000-3 0 5007 +TLE2=2 32294 0.0601 347.2581 0003426 119.9679 210.1685 1.00274326 9867 -[27844] +[25114] VERSION=1.1 -NAME=CUTE-1 (CO-55) -NICKNAME=CO-55 -TLE1=1 27844U 03031E 09363.99781084 .00000046 00000-0 41567-4 0 7455 -TLE2=2 27844 98.7109 10.3909 0009519 303.4265 56.6013 14.20675480337067 +NAME=ORBCOMM FM11 [+] +NICKNAME=ORBCOMM FM11 [+] +TLE1=1 25114U 97084C 10191.36686037 -.00000186 00000-0 -15858-4 0 2319 +TLE2=2 25114 45.0200 328.8741 0007966 197.8142 162.2426 14.34413381655987 -[25112] +[35868] VERSION=1.1 -NAME=ORBCOMM FM08 [+] -NICKNAME=ORBCOMM FM08 [+] -TLE1=1 25112U 97084A 09363.76428366 .00000066 00000-0 72784-4 0 4070 -TLE2=2 25112 45.0171 156.0164 0007361 358.5526 1.5296 14.34448769628330 +NAME=TATIANA 2 +NICKNAME=TATIANA 2 +TLE1=1 35868U 09049D 10191.72309091 .00000177 00000-0 10000-3 0 4720 +TLE2=2 35868 98.7560 245.4722 0003986 300.6024 59.4731 14.22112980 42076 -[23880] +[23765] VERSION=1.1 -NAME=GORIZONT 32 -NICKNAME=GORIZONT 32 -TLE1=1 23880U 96034A 09364.05437439 -.00000115 00000-0 10000-3 0 3705 -TLE2=2 23880 9.8713 54.1613 0003144 238.6353 170.7496 1.00269151 49803 +NAME=AFRICASAT-1 (MEASAT-1) +NICKNAME=AFRICASAT-1 (MEASAT-1) +TLE1=1 23765U 96002B 10191.84782575 .00000133 00000-0 10000-3 0 282 +TLE2=2 23765 2.5616 74.3817 0001088 70.6473 134.8206 1.00273532 53060 -[36122] +[32260] VERSION=1.1 -NAME=XIWANG-1 (HOPE-1) -NICKNAME=HO-68 -TLE1=1 36122U 09072B 09364.13000823 -.00000045 00000-0 00000+0 0 452 -TLE2=2 36122 100.4966 61.1041 0007686 3.2714 356.8450 13.16279894 1977 +NAME=GPS IIR-17M (DASS) +NICKNAME=GPS IIR-17M (DASS) +TLE1=1 32260U 07047A 10190.80909718 -.00000074 00000-0 00000+0 0 6778 +TLE2=2 32260 54.6269 321.4810 0025011 345.9544 13.9764 2.00552064 20094 -[32395] +[10967] VERSION=1.1 -NAME=COSMOS 2436 (723) -NICKNAME=COSMOS 2436 (723) -TLE1=1 32395U 07065C 09361.97901129 -.00000014 00000-0 10000-3 0 3553 -TLE2=2 32395 65.1296 36.8388 0017161 347.3163 12.7123 2.13103418 15557 +NAME=SEASAT 1 +NICKNAME=SEASAT 1 +TLE1=1 10967U 78064A 10190.72122752 -.00000062 00000-0 22623-4 0 1616 +TLE2=2 10967 108.0175 51.6959 0001952 289.2787 70.8143 14.42210666681046 -[26083] +[25479] VERSION=1.1 -NAME=GLOBALSTAR M060 -NICKNAME=GLOBALSTAR M060 -TLE1=1 26083U 00008C 09363.27001487 -.00000086 00000-0 10000-3 0 1314 -TLE2=2 26083 52.0054 58.1709 0001409 160.8905 199.2011 12.62187818463820 +NAME=ORBCOMM FM25 [+] +NICKNAME=ORBCOMM FM25 [+] +TLE1=1 25479U 98053E 10190.87296481 .00000373 00000-0 20030-3 0 1980 +TLE2=2 25479 45.0121 340.7876 0004821 126.4370 233.6916 14.29089132615400 -[12458] +[26549] VERSION=1.1 -NAME=NOVA I -NICKNAME=NOVA I -TLE1=1 12458U 81044A 09362.83501214 .00000050 00000-0 10000-3 0 9181 -TLE2=2 12458 90.0820 117.4941 0013545 332.6366 27.4067 13.22710582381576 +NAME=SAUDISAT 1B +NICKNAME=SO-42 +TLE1=1 26549U 00057E 10191.78049030 -.00000098 00000-0 65370-5 0 6688 +TLE2=2 26549 64.5584 18.8638 0045341 217.9671 141.8195 14.79558838528354 -[25106] +[36112] VERSION=1.1 -NAME=IRIDIUM 47 [+] -NICKNAME=IRIDIUM 47 [+] -TLE1=1 25106U 97082C 09363.39698498 .00000181 00000-0 57578-4 0 7924 -TLE2=2 25106 86.3953 315.0946 0002330 78.5414 281.6061 14.34216999629532 +NAME=COSMOS 2457 (733) +NICKNAME=COSMOS 2457 (733) +TLE1=1 36112U 09070B 10191.83162100 .00000018 00000-0 00000+0 0 1824 +TLE2=2 36112 64.6836 270.7192 0015101 155.6039 226.4686 2.13101785 4447 -[35868] +[28892] VERSION=1.1 -NAME=TATIANA 2 -NICKNAME=TATIANA 2 -TLE1=1 35868U 09049D 09363.30852810 .00000177 00000-0 10000-3 0 945 -TLE2=2 35868 98.7853 53.1594 0005252 120.2175 239.9488 14.22093128 14584 +NAME=UWE-1 +NICKNAME=UWE-1 +TLE1=1 28892U 05043C 10191.12708978 .00000059 00000-0 21742-4 0 6750 +TLE2=2 28892 98.0089 74.0980 0016467 210.6603 149.3643 14.59884038250440 -[23461] +[25884] VERSION=1.1 -NAME=INTELSAT 704 (IS-704) -NICKNAME=INTELSAT 704 (IS-704) -TLE1=1 23461U 95001A 09360.90361709 -.00000157 00000-0 10000-3 0 421 -TLE2=2 23461 0.6055 76.6402 0005064 136.9532 146.3855 0.99180928 54819 +NAME=GLOBALSTAR M027 +NICKNAME=GLOBALSTAR M027 +TLE1=1 25884U 99043B 10191.56795186 -.00000086 00000-0 10000-3 0 2353 +TLE2=2 25884 52.0080 55.2468 0000958 44.0194 316.0749 12.62258074502686 -[28378] +[28903] VERSION=1.1 -NAME=ANIK F2 -NICKNAME=ANIK F2 -TLE1=1 28378U 04027A 09362.48602990 -.00000027 00000-0 10000-3 0 8868 -TLE2=2 28378 0.0063 310.1344 0002338 298.0656 272.7571 1.00271851 20049 +NAME=SPACEWAY 2 +NICKNAME=SPACEWAY 2 +TLE1=1 28903U 05046B 10190.30857757 -.00000118 00000-0 10000-3 0 8084 +TLE2=2 28903 0.0168 162.8135 0001358 16.1744 120.0919 1.00271098 17115 -[22117] +[28509] VERSION=1.1 -NAME=SATCOM C3 -NICKNAME=SATCOM C3 -TLE1=1 22117U 92060B 09362.45044480 -.00000217 00000-0 10000-3 0 2593 -TLE2=2 22117 4.8593 69.9987 0001913 190.8637 279.3153 1.00271539 63322 +NAME=COSMOS 2413 (712) +NICKNAME=COSMOS 2413 (712) +TLE1=1 28509U 04053B 10190.76297929 .00000020 00000-0 10000-3 0 5406 +TLE2=2 28509 63.6228 267.6502 0006772 166.7115 339.5496 2.13098256 43079 -[27528] +[4793] VERSION=1.1 -NAME=HISPASAT 1D -NICKNAME=HISPASAT 1D -TLE1=1 27528U 02044A 09357.76320002 .00000000 00000-0 10000-3 0 1185 -TLE2=2 27528 0.0163 307.1885 0001007 29.1587 0.8300 1.00265545 26623 +NAME=NOAA 1 [-] +NICKNAME=NOAA 1 [-] +TLE1=1 04793U 70106A 10191.39110878 -.00000031 00000-0 10000-3 0 5733 +TLE2=2 04793 102.0928 194.3811 0032321 59.0690 301.3551 12.53939761811570 -[23227] +[25158] VERSION=1.1 -NAME=OPTUS B3 -NICKNAME=OPTUS B3 -TLE1=1 23227U 94055A 09362.67523553 -.00000054 00000-0 10000-3 0 4646 -TLE2=2 23227 1.9298 77.1745 0004489 200.4068 226.7590 1.00272126 56152 +NAME=ORBCOMM FM03 [-] +NICKNAME=ORBCOMM FM03 [-] +TLE1=1 25158U 98007B 10191.63868418 .00000055 00000-0 77259-4 0 2178 +TLE2=2 25158 107.9631 181.2142 0052147 337.0388 22.8396 14.25592865644876 -[22827] +[25477] VERSION=1.1 -NAME=HEALTHSAT 1 -NICKNAME=HEALTHSAT 1 -TLE1=1 22827U 93061E 09362.95516765 .00000034 00000-0 29448-4 0 4267 -TLE2=2 22827 98.4540 312.4526 0009259 26.5336 333.6313 14.30182869848066 +NAME=ORBCOMM FM23 [+] +NICKNAME=ORBCOMM FM23 [+] +TLE1=1 25477U 98053C 10191.75777380 -.00000147 00000-0 -30641-5 0 3263 +TLE2=2 25477 45.0125 337.0422 0003536 116.2719 243.8450 14.29093885615556 -[28892] +[32791] VERSION=1.1 -NAME=UWE-1 -NICKNAME=UWE-1 -TLE1=1 28892U 05043C 09363.25181175 .00000115 00000-0 33400-4 0 5168 -TLE2=2 28892 98.0328 247.4881 0018353 96.4698 263.8596 14.59802703222304 +NAME=SEEDS II (CO-66) +NICKNAME=SEEDS II (CO-66) +TLE1=1 32791U 08021J 10191.08402540 .00000286 00000-0 43054-4 0 7127 +TLE2=2 32791 97.8955 255.5390 0015148 207.1416 152.9020 14.81685368118847 -[27807] +[20638] VERSION=1.1 -NAME=GSAT-2 -NICKNAME=GSAT-2 -TLE1=1 27807U 03018A 09361.78019631 .00000148 00000-0 10000-3 0 1168 -TLE2=2 27807 0.0391 262.1818 0003338 3.8732 159.2103 1.00273798 24360 +NAME=ROSAT +NICKNAME=ROSAT +TLE1=1 20638U 90049A 10190.88309250 .00005965 00000-0 64436-4 0 237 +TLE2=2 20638 52.9929 338.9391 0003961 134.3193 225.8146 15.65262084120400 -[33105] +[28981] VERSION=1.1 -NAME=JASON 2 (OSTM) -NICKNAME=JASON 2 (OSTM) -TLE1=1 33105U 08032A 09363.20756909 -.00000061 00000-0 00000+0 0 5144 -TLE2=2 33105 66.0440 25.8209 0007736 269.1872 90.8245 12.80929280 71320 +NAME=ST5-B +NICKNAME=ST5-B +TLE1=1 28981U 06008B 10190.82603348 .00010775 14208-5 35913-3 0 4165 +TLE2=2 28981 105.6303 226.3455 2298494 84.3003 301.3387 10.81403372167548 -[29671] +[27707] VERSION=1.1 -NAME=COSMOS 2426 (717) -NICKNAME=COSMOS 2426 (717) -TLE1=1 29671U 06062B 09363.51493953 -.00000006 00000-0 10000-3 0 8517 -TLE2=2 29671 65.5136 36.3775 0018827 176.9162 327.2732 2.13103559 23439 +NAME=MOLNIYA 1-92 +NICKNAME=MOLNIYA 1-92 +TLE1=1 27707U 03011A 10190.90035506 .00000664 00000-0 10000-3 0 6196 +TLE2=2 27707 64.7811 164.0806 7008172 257.2298 314.7011 2.00614494 53271 -[28874] +[22724] VERSION=1.1 -NAME=GPS IIR-14M (DASS) -NICKNAME=GPS IIR-14M (DASS) -TLE1=1 28874U 05038A 09362.50236504 .00000080 00000-0 10000-3 0 3615 -TLE2=2 28874 55.0063 151.4477 0050028 210.9002 148.7865 2.00552859 31210 +NAME=INSAT-2B +NICKNAME=INSAT-2B +TLE1=1 22724U 93048B 10190.20353205 .00000096 00000-0 10000-3 0 6763 +TLE2=2 22724 8.8263 58.7180 0015588 44.7716 315.3203 0.99960520 62387 -[27663] +[24971] VERSION=1.1 -NAME=GPS BIIR-08 (DASS) -NICKNAME=GPS BIIR-08 (DASS) -TLE1=1 27663U 03005A 09363.21637754 -.00000018 00000-0 10000-3 0 9318 -TLE2=2 27663 55.6054 91.6669 0054586 342.8174 17.0026 2.00563180 50696 +NAME=IRS-1D +NICKNAME=IRS-1D +TLE1=1 24971U 97057A 10191.72690051 .00000071 00000-0 40185-4 0 5618 +TLE2=2 24971 98.1984 213.0797 0053228 214.1269 145.6477 14.33001775668474 -[27600] +[25173] VERSION=1.1 -NAME=MICRO LABSAT -NICKNAME=MICRO LABSAT -TLE1=1 27600U 02056D 09363.35282387 .00000028 00000-0 27461-4 0 9418 -TLE2=2 27600 98.3663 52.5886 0011535 37.7380 322.4608 14.28874570367310 +NAME=IRIDIUM 53 [+] +NICKNAME=IRIDIUM 53 [+] +TLE1=1 25173U 98010E 10191.42505324 .00000067 00000-0 16820-4 0 572 +TLE2=2 25173 86.3961 329.2810 0002391 82.9944 277.1518 14.34215341648602 -[20442] +[25961] VERSION=1.1 -NAME=LUSAT (LO-19) -NICKNAME=LO-19 -TLE1=1 20442U 90005G 09363.96510699 .00000039 00000-0 30020-4 0 6945 -TLE2=2 20442 98.2709 330.2426 0010988 306.8343 53.1847 14.32077173 41336 +NAME=GLOBALSTAR M039 +NICKNAME=GLOBALSTAR M039 +TLE1=1 25961U 99062A 10191.52126136 -.00000086 00000-0 10000-3 0 5240 +TLE2=2 25961 51.9961 321.8801 0002193 116.0432 244.0664 12.62262732491273 -[26997] +[27605] VERSION=1.1 -NAME=JASON 1 -NICKNAME=JASON 1 -TLE1=1 26997U 01055A 09363.48362194 -.00000038 00000-0 10000-3 0 1248 -TLE2=2 26997 66.0437 24.8460 0007241 271.2984 88.7204 12.80929881377051 +NAME=RUBIN-2 & SAFIR-M +NICKNAME=RUBIN-2 & SAFIR-M +TLE1=1 27605U 02058A 10190.95235138 -.00000071 00000-0 10242-4 0 2302 +TLE2=2 27605 64.5590 272.6842 0034776 67.5099 292.9684 14.72476837406037 -[21426] +[27438] VERSION=1.1 -NAME=MOLNIYA 1-81 -NICKNAME=MOLNIYA 1-81 -TLE1=1 21426U 91043A 09361.63906152 .00000372 00000-0 10000-3 0 2059 -TLE2=2 21426 61.9751 212.3813 7192591 267.7140 16.2484 2.00612235135787 +NAME=INTELSAT 905 (IS-905) +NICKNAME=INTELSAT 905 (IS-905) +TLE1=1 27438U 02027A 10190.92121120 -.00000178 00000-0 10000-3 0 1841 +TLE2=2 27438 0.0416 255.8114 0002984 225.6339 113.4159 1.00270804 29700 -[27421] +[26619] VERSION=1.1 -NAME=SPOT 5 -NICKNAME=SPOT 5 -TLE1=1 27421U 02021A 09364.13328451 -.00000017 00000-0 12906-4 0 7090 -TLE2=2 27421 98.7540 75.2107 0001015 112.3078 333.8023 14.20009684396972 +NAME=EO-1 +NICKNAME=EO-1 +TLE1=1 26619U 00075A 10191.68285702 -.00000557 00000-0 -10146-3 0 3185 +TLE2=2 26619 98.1439 258.4933 0010678 164.4847 195.6660 14.62122175513036 -[24846] +[25413] VERSION=1.1 -NAME=INTELSAT 802 (IS-802) -NICKNAME=INTELSAT 802 (IS-802) -TLE1=1 24846U 97031A 09361.80126480 .00000180 00000-0 10000-3 0 9322 -TLE2=2 24846 0.0178 327.8436 0003397 355.6623 94.2283 1.00272860 45864 +NAME=ORBCOMM FM17 [+] +NICKNAME=ORBCOMM FM17 [+] +TLE1=1 25413U 98046A 10191.22503731 -.00000142 00000-0 -13826-5 0 3524 +TLE2=2 25413 44.9971 253.1670 0002721 187.3951 172.6869 14.27636292622147 -[33063] +[31577] VERSION=1.1 -NAME=ORBCOMM FM39 [S] -NICKNAME=ORBCOMM FM39 [S] -TLE1=1 33063U 08031D 09363.13586595 .00000008 00000-0 34725-4 0 4976 -TLE2=2 33063 48.4440 244.8335 0009433 142.2421 217.9159 14.68201933 81971 +NAME=SINOSAT 3 +NICKNAME=SINOSAT 3 +TLE1=1 31577U 07021A 10191.57212557 -.00000350 00000-0 10000-3 0 8980 +TLE2=2 31577 0.0688 248.4961 0001853 192.9040 177.8795 1.00268325 11411 -[25944] +[28790] VERSION=1.1 -NAME=GLOBALSTAR M059 -NICKNAME=GLOBALSTAR M059 -TLE1=1 25944U 99058B 09363.27696841 -.00000086 00000-0 10000-3 0 618 -TLE2=2 25944 52.0058 57.0475 0001872 177.0692 183.0187 12.62265053470498 +NAME=GALAXY 14 (G-14) +NICKNAME=GALAXY 14 (G-14) +TLE1=1 28790U 05030A 10188.56876535 .00000049 00000-0 10000-3 0 9477 +TLE2=2 28790 0.0170 21.9131 0002446 80.5022 262.7721 1.00273788 17928 -[28446] +[35635] VERSION=1.1 -NAME=AMC-15 -NICKNAME=AMC-15 -TLE1=1 28446U 04041A 09362.50731860 -.00000067 00000-0 10000-3 0 9632 -TLE2=2 28446 0.0407 246.5048 0002076 20.2834 267.9127 1.00272335 19096 +NAME=COSMOS 2454 +NICKNAME=COSMOS 2454 +TLE1=1 35635U 09039A 10191.75527626 .00000138 00000-0 10000-3 0 5470 +TLE2=2 35635 82.9568 118.0055 0019503 351.8459 8.2380 13.89394415 49231 -[25777] +[18187] VERSION=1.1 -NAME=IRIDIUM 14 [S] -NICKNAME=IRIDIUM 14 [S] -TLE1=1 25777U 99032A 09363.28492482 .00000176 00000-0 35973-4 0 8692 -TLE2=2 25777 86.5144 283.6476 0002317 79.5869 280.5598 14.54934915560295 +NAME=COSMOS 1867 +NICKNAME=COSMOS 1867 +TLE1=1 18187U 87060A 10191.76838948 -.00000057 00000-0 16434-4 0 9277 +TLE2=2 18187 65.0109 117.6735 0019448 274.8897 84.9968 14.30866945201507 -[20776] +[28912] VERSION=1.1 -NAME=SKYNET 4C -NICKNAME=SKYNET 4C -TLE1=1 20776U 90079A 09362.09493448 .00000044 00000-0 10000-3 0 205 -TLE2=2 20776 10.2519 45.3659 0003466 238.8726 212.6234 1.00272358 70633 +NAME=METEOSAT-9 (MSG-2) +NICKNAME=METEOSAT-9 (MSG-2) +TLE1=1 28912U 05049B 10190.88900612 .00000001 00000-0 10000-3 0 7000 +TLE2=2 28912 0.5005 78.6326 0001776 113.5845 55.2538 1.00276653 16739 -[22041] +[26243] VERSION=1.1 -NAME=GORIZONT 26 -NICKNAME=GORIZONT 26 -TLE1=1 22041U 92043A 09356.53759703 -.00000222 00000-0 10000-3 0 9170 -TLE2=2 22041 11.7378 41.8291 0029552 110.9415 249.3723 0.99242781 63749 +NAME=SESAT 1 +NICKNAME=SESAT 1 +TLE1=1 26243U 00019A 10189.94338034 .00000113 00000-0 10000-3 0 7661 +TLE2=2 26243 0.0696 9.3501 0001907 195.6819 77.3777 1.00272825 37447 -[30798] +[27844] VERSION=1.1 -NAME=THEMIS E -NICKNAME=THEMIS E -TLE1=1 30798U 07004E 09364.04166667 .00000043 00000-0 00000+0 0 7732 -TLE2=2 30798 4.1489 233.0137 7505127 142.6733 342.9501 1.00290585 9853 +NAME=CUTE-1 (CO-55) +NICKNAME=CO-55 +TLE1=1 27844U 03031E 10191.26555062 .00000047 00000-0 41901-4 0 8860 +TLE2=2 27844 98.7088 199.9071 0010750 101.3712 258.8682 14.20716946364362 -[26064] +[16909] VERSION=1.1 -NAME=FALCONSAT -NICKNAME=FALCONSAT -TLE1=1 26064U 00004D 09363.50254615 .00000002 00000-0 21107-4 0 6490 -TLE2=2 26064 100.2261 183.8691 0038430 78.9879 281.5629 14.35432709519831 +NAME=JAS-1 (FO-12) +NICKNAME=FO-12 +TLE1=1 16909U 86061B 10190.66486931 -.00000083 00000-0 10000-3 0 7501 +TLE2=2 16909 50.0164 50.6925 0011616 112.1904 248.0157 12.44453915 87227 -[27516] +[32277] VERSION=1.1 -NAME=KODAMA (DRTS) -NICKNAME=KODAMA (DRTS) -TLE1=1 27516U 02042B 09362.22434272 -.00000212 00000-0 10000-3 0 3023 -TLE2=2 27516 0.0543 263.2328 0003497 352.6639 12.4496 1.00270812 26788 +NAME=COSMOS 2431 (718) +NICKNAME=COSMOS 2431 (718) +TLE1=1 32277U 07052C 10191.13099971 .00000045 00000-0 00000+0 0 7251 +TLE2=2 32277 64.8958 150.7266 0018613 199.5059 170.1430 2.13102286 21135 -[25116] +[28890] VERSION=1.1 -NAME=ORBCOMM FM09 [+] -NICKNAME=ORBCOMM FM09 [+] -TLE1=1 25116U 97084E 09363.71315244 -.00000052 00000-0 31415-4 0 2316 -TLE2=2 25116 45.0181 156.8447 0004514 306.2733 53.7662 14.34418458628321 +NAME=BEIJING 1 +NICKNAME=BEIJING 1 +TLE1=1 28890U 05043A 10191.71860856 .00000067 00000-0 23200-4 0 4182 +TLE2=2 28890 98.0023 75.1049 0014987 203.8148 156.2384 14.60103668250609 -[25467] +[21576] VERSION=1.1 -NAME=IRIDIUM 82 [+] -NICKNAME=IRIDIUM 82 [+] -TLE1=1 25467U 98051A 09363.27121032 .00000112 00000-0 32949-4 0 9395 -TLE2=2 25467 86.3957 81.6919 0001976 108.1440 251.9961 14.34215642595766 +NAME=ORBCOMM-X [-] +NICKNAME=ORBCOMM-X [-] +TLE1=1 21576U 91050C 10191.47472417 .00000034 00000-0 24800-4 0 3601 +TLE2=2 21576 98.5174 145.6129 0003236 328.7839 31.3164 14.40018698996428 -[28129] +[25106] VERSION=1.1 -NAME=GPS BIIR-10 (PRN 22) -NICKNAME=GPS BIIR-10 (PRN 22) -TLE1=1 28129U 03058A 09361.91353667 -.00000017 00000-0 10000-3 0 4401 -TLE2=2 28129 53.6898 272.0458 0054076 253.1230 106.3325 2.00564440 44169 +NAME=IRIDIUM 47 [+] +NICKNAME=IRIDIUM 47 [+] +TLE1=1 25106U 97082C 10191.23718747 .00000107 00000-0 31288-4 0 255 +TLE2=2 25106 86.3923 234.4566 0002555 83.3612 276.7869 14.34219636657177 -[31119] +[23915] VERSION=1.1 -NAME=SAUDICOMSAT 7 -NICKNAME=SAUDICOMSAT 7 -TLE1=1 31119U 07012C 09363.21553078 .00000385 00000-0 88724-4 0 8210 -TLE2=2 31119 97.9699 58.2050 0062552 7.7064 352.5061 14.59473221143941 +NAME=INTELSAT 709 (IS-709) +NICKNAME=INTELSAT 709 (IS-709) +TLE1=1 23915U 96035A 10190.92321296 .00000092 00000-0 10000-3 0 1658 +TLE2=2 23915 0.0100 218.7692 0001946 279.0342 177.1444 1.00273234 51540 -[24315] +[24969] VERSION=1.1 -NAME=AMC-1 (GE-1) -NICKNAME=AMC-1 (GE-1) -TLE1=1 24315U 96054A 09363.19245559 -.00000082 00000-0 10000-3 0 2640 -TLE2=2 24315 0.0359 236.6866 0003515 41.0464 146.3338 1.00271664 48731 +NAME=IRIDIUM 34 [+] +NICKNAME=IRIDIUM 34 [+] +TLE1=1 24969U 97056E 10191.27577564 .00000125 00000-0 37401-4 0 776 +TLE2=2 24969 86.3963 297.7765 0002468 82.0130 278.1353 14.34217050669348 -[27601] +[21111] VERSION=1.1 -NAME=H-2A R/B -NICKNAME=H-2A R/B -TLE1=1 27601U 02056E 09364.20349918 .00000021 00000-0 23877-4 0 8091 -TLE2=2 27601 98.5657 91.0860 0073982 65.2673 295.6187 14.30729582367892 +NAME=COSMOS 2133 +NICKNAME=COSMOS 2133 +TLE1=1 21111U 91010A 10189.11148455 .00000000 00000-0 10000-3 0 2790 +TLE2=2 21111 12.0005 37.9577 0008013 9.7893 350.2447 1.00258837 71054 -[25468] +[17590] VERSION=1.1 -NAME=IRIDIUM 81 [+] -NICKNAME=IRIDIUM 81 [+] -TLE1=1 25468U 98051B 09363.33463849 .00000182 00000-0 58034-4 0 7655 -TLE2=2 25468 86.3948 81.4894 0002333 87.8076 272.3399 14.34215716591998 +NAME=SL-16 R/B +NICKNAME=SL-16 R/B +TLE1=1 17590U 87027B 10191.22690354 .00000263 00000-0 15620-3 0 5870 +TLE2=2 17590 71.0026 84.7687 0006333 218.8892 141.1768 14.16488810205278 -[33108] +[25395] VERSION=1.1 -NAME=COSMOS 2440 -NICKNAME=COSMOS 2440 -TLE1=1 33108U 08033A 09361.77691565 -.00000115 00000-0 10000-3 0 4272 -TLE2=2 33108 1.0556 295.2632 0002408 23.4639 137.5202 1.00276685 5497 +NAME=FASAT B +NICKNAME=FASAT B +TLE1=1 25395U 98043B 10191.09512465 .00000051 00000-0 39440-4 0 7855 +TLE2=2 25395 98.3019 206.6537 0003223 131.4934 228.6519 14.24394792623661 -[27858] +[32373] VERSION=1.1 -NAME=SCISAT 1 -NICKNAME=SCISAT 1 -TLE1=1 27858U 03036A 09363.52438304 .00000080 00000-0 17071-4 0 9136 -TLE2=2 27858 73.9326 157.7318 0008441 175.1359 184.9913 14.74828801343516 +NAME=RADUGA-1M 1 +NICKNAME=RADUGA-1M 1 +TLE1=1 32373U 07058A 10191.62790580 -.00000035 00000-0 10000-3 0 7404 +TLE2=2 32373 0.0210 89.8709 0003021 24.1610 110.4323 1.00271935 10366 -[34839] +[25112] VERSION=1.1 -NAME=YAOGAN 6 -NICKNAME=YAOGAN 6 -TLE1=1 34839U 09021A 09364.18747444 .00000844 00000-0 44826-4 0 8005 -TLE2=2 34839 97.6131 74.5546 0003106 107.5763 331.6029 1... [truncated message content] |
From: <cs...@us...> - 2010-07-10 01:40:29
|
Revision: 629 http://gpredict.svn.sourceforge.net/gpredict/?rev=629&view=rev Author: csete Date: 2010-07-10 00:27:52 +0000 (Sat, 10 Jul 2010) Log Message: ----------- Fixed incorrect frequency and added more modes for SEEDS II. Modified Paths: -------------- trunk/ChangeLog trunk/data/trsp/32791.trsp Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-10 00:16:57 UTC (rev 628) +++ trunk/ChangeLog 2010-07-10 00:27:52 UTC (rev 629) @@ -10,7 +10,10 @@ * data/trsp/36122.trsp: Fixed incorrect V/U packet frequencies. + * data/trsp/32791.trsp: + Fixed incorrect frequency and added more modes. + 2010-06-18 Alexandru Csete <oz9aec at gmail.com> * src/main.c: Modified: trunk/data/trsp/32791.trsp =================================================================== --- trunk/data/trsp/32791.trsp 2010-07-10 00:16:57 UTC (rev 628) +++ trunk/data/trsp/32791.trsp 2010-07-10 00:27:52 UTC (rev 629) @@ -1,2 +1,9 @@ [Mode U TLM] -DOWN_LOW=437385000 +DOWN_LOW=437485000 + +[Mode U SSTV] +DOWN_LOW=437485000 + +[Mode U Digi] +DOWN_LOW=437485000 + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-10 00:17:06
|
Revision: 628 http://gpredict.svn.sourceforge.net/gpredict/?rev=628&view=rev Author: csete Date: 2010-07-10 00:16:57 +0000 (Sat, 10 Jul 2010) Log Message: ----------- Fixed incorrect frequecies for HO-68 mode V/U packet. Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/data/trsp/36122.trsp Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-09 13:02:43 UTC (rev 627) +++ trunk/ChangeLog 2010-07-10 00:16:57 UTC (rev 628) @@ -6,6 +6,9 @@ * src/gtk-rig-ctrl.c: Added option for manual T/R switch for FT-817/857/897 (RIG_TYPE_TOGGLE_MAN). The auto mode has been renamed to RIG_TYPE_TOGGLE_AUTO. + + * data/trsp/36122.trsp: + Fixed incorrect V/U packet frequencies. 2010-06-18 Alexandru Csete <oz9aec at gmail.com> Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-07-09 13:02:43 UTC (rev 627) +++ trunk/NEWS 2010-07-10 00:16:57 UTC (rev 628) @@ -40,6 +40,7 @@ - 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 over light background map regions. +- Fixed incorrect uplink and downlink frequencies for HO-68, mode V/U packet. Changes in version 1.1 (5 Oct 2009) Modified: trunk/data/trsp/36122.trsp =================================================================== --- trunk/data/trsp/36122.trsp 2010-07-09 13:02:43 UTC (rev 627) +++ trunk/data/trsp/36122.trsp 2010-07-10 00:16:57 UTC (rev 628) @@ -16,7 +16,7 @@ INVERT=true [Mode V/U BBS AFSK] -DOWN_LOW=145825000 -UP_LOW=435675000 +UP_LOW=145825000 +DOWN_LOW=435675000 MODE=AFSK This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-09 13:02:49
|
Revision: 627 http://gpredict.svn.sourceforge.net/gpredict/?rev=627&view=rev Author: csete Date: 2010-07-09 13:02:43 +0000 (Fri, 09 Jul 2010) Log Message: ----------- Updated. Modified Paths: -------------- trunk/ChangeLog Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-09 13:02:26 UTC (rev 626) +++ trunk/ChangeLog 2010-07-09 13:02:43 UTC (rev 627) @@ -1,3 +1,13 @@ +2010-07-09 Alexandru Csete <oz9aec at gmail.com> + + * src/radio-conf.h: + * src/sat-pref-rig.c: + * src/sat-pref-rig-editor.c: + * src/gtk-rig-ctrl.c: + Added option for manual T/R switch for FT-817/857/897 (RIG_TYPE_TOGGLE_MAN). + The auto mode has been renamed to RIG_TYPE_TOGGLE_AUTO. + + 2010-06-18 Alexandru Csete <oz9aec at gmail.com> * src/main.c: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-09 13:02:33
|
Revision: 626 http://gpredict.svn.sourceforge.net/gpredict/?rev=626&view=rev Author: csete Date: 2010-07-09 13:02:26 +0000 (Fri, 09 Jul 2010) Log Message: ----------- Added function to capture key press events. Modified Paths: -------------- trunk/src/gtk-rig-ctrl.c Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-09 10:36:13 UTC (rev 625) +++ trunk/src/gtk-rig-ctrl.c 2010-07-09 13:02:26 UTC (rev 626) @@ -39,6 +39,7 @@ * */ #include <gtk/gtk.h> +#include <gdk/gdkkeysyms.h> #include <glib/gi18n.h> #include <math.h> #include <glib.h> @@ -97,6 +98,7 @@ static gboolean rig_ctrl_timeout_cb (gpointer data); static void downlink_changed_cb (GtkFreqKnob *knob, gpointer data); static void uplink_changed_cb (GtkFreqKnob *knob, gpointer data); +static gboolean key_press_cb (GtkWidget *widget, GdkEventKey *pKey, gpointer data); /* radio control functions */ @@ -251,6 +253,10 @@ } widget = g_object_new (GTK_TYPE_RIG_CTRL, NULL); + + /* connect calback to catch key press events */ + g_signal_connect (widget, "key-press-event", + G_CALLBACK(key_press_cb), NULL); // controller widget will be passed as primary param /* store satellites */ g_hash_table_foreach (module->satellites, store_sats, widget); @@ -3066,3 +3072,44 @@ return TRUE; } + + +/** \brief Manage key press event on the controller widget + * \param widget Pointer to the GtkRigCtrl widget that received the event + * \param pKey Pointer to the event that has happened + * \param data User data (always NULL) + * \return TRUE if the event is known and managed by this callback, FALSE otherwise + * + * This function is used to catch events when the user presses the SPACE key on the keyboard. + * This is used to toggle betweer RX/TX when using FT817/857/897 in manual mode. + */ +static gboolean key_press_cb (GtkWidget *widget, GdkEventKey *pKey, gpointer data) +{ + GtkRigCtrl *ctrl = GTK_RIG_CTRL(widget); + gboolean event_managed = FALSE; + + + /* filter GDK_KEY_PRESS events */ + if (pKey->type == GDK_KEY_PRESS) { + + switch (pKey->keyval) { + /* keyvals not in API docs. See <gdk/gdkkeysyms.h> for a complete list */ + case GDK_space: + sat_log_log (SAT_LOG_LEVEL_MSG, + _("%s: Detected SPACEBAR pressed event"), + __FUNCTION__); + + event_managed = TRUE; + break; + + default: + sat_log_log (SAT_LOG_LEVEL_DEBUG, + _("%s: Keypress value %i not managed by this function"), + __FUNCTION__, pKey->keyval); + break; + + } + } + + return event_managed; +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-09 10:36:19
|
Revision: 625 http://gpredict.svn.sourceforge.net/gpredict/?rev=625&view=rev Author: csete Date: 2010-07-09 10:36:13 +0000 (Fri, 09 Jul 2010) Log Message: ----------- Clean up formatting of function names. Modified Paths: -------------- trunk/src/gtk-rig-ctrl.c Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-09 09:49:40 UTC (rev 624) +++ trunk/src/gtk-rig-ctrl.c 2010-07-09 10:36:13 UTC (rev 625) @@ -134,8 +134,7 @@ static GdkColor ColGreen = {0, 0, 0xFFFF, 0}; -GType - gtk_rig_ctrl_get_type () +GType gtk_rig_ctrl_get_type () { static GType gtk_rig_ctrl_type = 0; @@ -163,8 +162,7 @@ } -static void - gtk_rig_ctrl_class_init (GtkRigCtrlClass *class) +static void gtk_rig_ctrl_class_init (GtkRigCtrlClass *class) { GObjectClass *gobject_class; GtkObjectClass *object_class; @@ -184,8 +182,7 @@ -static void - gtk_rig_ctrl_init (GtkRigCtrl *ctrl) +static void gtk_rig_ctrl_init (GtkRigCtrl *ctrl) { ctrl->sats = NULL; ctrl->target = NULL; @@ -206,8 +203,7 @@ ctrl->lasttxf = 0.0; } -static void - gtk_rig_ctrl_destroy (GtkObject *object) +static void gtk_rig_ctrl_destroy (GtkObject *object) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (object); @@ -244,8 +240,7 @@ * \return A new rig control window. * */ -GtkWidget * - gtk_rig_ctrl_new (GtkSatModule *module) +GtkWidget *gtk_rig_ctrl_new (GtkSatModule *module) { GtkWidget *widget; GtkWidget *table; @@ -310,8 +305,7 @@ * the satellite data has been updated. The function updates the internal state * of the controller and the rigator. */ -void - gtk_rig_ctrl_update (GtkRigCtrl *ctrl, gdouble t) +void gtk_rig_ctrl_update (GtkRigCtrl *ctrl, gdouble t) { gdouble satfreq; gchar *buff; @@ -386,8 +380,7 @@ * satellite frequency with the radio frequency below it. * */ -static - GtkWidget *create_downlink_widgets (GtkRigCtrl *ctrl) +static GtkWidget *create_downlink_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; GtkWidget *vbox; @@ -451,8 +444,7 @@ * This function creates and initialises the widgets for displaying the * uplink frequency of the satellite and the radio. */ -static - GtkWidget *create_uplink_widgets (GtkRigCtrl *ctrl) +static GtkWidget *create_uplink_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; GtkWidget *vbox; @@ -513,8 +505,7 @@ /** \brief Create target widgets. * \param ctrl Pointer to the GtkRigCtrl widget. */ -static - GtkWidget *create_target_widgets (GtkRigCtrl *ctrl) +static GtkWidget *create_target_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame,*table,*label,*satsel,*track; GtkWidget *tune,*trsplock,*hbox; @@ -645,8 +636,7 @@ } -static GtkWidget * - create_conf_widgets (GtkRigCtrl *ctrl) +static GtkWidget *create_conf_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame,*table,*label,*timer; GDir *dir = NULL; /* directory handle */ @@ -783,8 +773,7 @@ /** \brief Create count down widget */ -static GtkWidget * - create_count_down_widgets (GtkRigCtrl *ctrl) +static GtkWidget *create_count_down_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; @@ -807,8 +796,7 @@ /** \brief Copy satellite from hash table to singly linked list. */ -static void - store_sats (gpointer key, gpointer value, gpointer user_data) +static void store_sats (gpointer key, gpointer value, gpointer user_data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL( user_data); sat_t *sat = SAT (value); @@ -823,8 +811,7 @@ * * This function is called when the user selects a new satellite. */ -static void - sat_selected_cb (GtkComboBox *satsel, gpointer data) +static void sat_selected_cb (GtkComboBox *satsel, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gint i; @@ -958,8 +945,7 @@ * \param button Pointer to the GtkToggle button. * \param data Pointer to the GtkRigCtrl widget. */ -static void - track_toggle_cb (GtkToggleButton *button, gpointer data) +static void track_toggle_cb (GtkToggleButton *button, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -978,8 +964,7 @@ * This function is called when the user changes the value of the * cycle delay. */ -static void - delay_changed_cb (GtkSpinButton *spin, gpointer data) +static void delay_changed_cb (GtkSpinButton *spin, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -1004,8 +989,7 @@ * * BUG Doesn't prevent user to select same radio as in the secondary conf. */ -static void - primary_rig_selected_cb (GtkComboBox *box, gpointer data) +static void primary_rig_selected_cb (GtkComboBox *box, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gchar *buff; @@ -1070,8 +1054,7 @@ * This function is called when the user selects a new rig controller * device for the secondary radio. This radio is used for uplink only. */ -static void - secondary_rig_selected_cb (GtkComboBox *box, gpointer data) +static void secondary_rig_selected_cb (GtkComboBox *box, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gchar *buff; @@ -1284,8 +1267,7 @@ * \param data Pointer to the GtkRigCtrl widget. * \return Always TRUE to let the timer continue. */ -static gboolean - rig_ctrl_timeout_cb (gpointer data) +static gboolean rig_ctrl_timeout_cb (gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-09 09:49:46
|
Revision: 624 http://gpredict.svn.sourceforge.net/gpredict/?rev=624&view=rev Author: csete Date: 2010-07-09 09:49:40 +0000 (Fri, 09 Jul 2010) Log Message: ----------- Added option for manual T/R switch for FT-817/857/897 (RIG_TYPE_TOGGLE_MAN). The auto mode has been renamed to RIG_TYPE_TOGGLE_AUTO. Modified Paths: -------------- trunk/src/gtk-rig-ctrl.c trunk/src/radio-conf.h trunk/src/sat-pref-rig-editor.c trunk/src/sat-pref-rig.c Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-07-09 09:31:17 UTC (rev 623) +++ trunk/src/gtk-rig-ctrl.c 2010-07-09 09:49:40 UTC (rev 624) @@ -1165,8 +1165,7 @@ * * This function is called when the user toggles the "Engage" button. */ -static void - rig_engaged_cb (GtkToggleButton *button, gpointer data) +static void rig_engaged_cb (GtkToggleButton *button, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -1179,7 +1178,7 @@ ctrl->lasttxf = 0.0; ctrl->lastrxf = 0.0; switch (ctrl->conf->type) { - case RIG_TYPE_TOGGLE: + case RIG_TYPE_TOGGLE_AUTO: unset_toggle (ctrl,ctrl->conf); break; default: @@ -1224,11 +1223,18 @@ exec_duplex_cycle (ctrl); break; - case RIG_TYPE_TOGGLE: + case RIG_TYPE_TOGGLE_AUTO: set_toggle (ctrl,ctrl->conf); exec_toggle_cycle (ctrl); break; + case RIG_TYPE_TOGGLE_MAN: + /** FIXME **/ + sat_log_log (SAT_LOG_LEVEL_BUG, + _("%s: Controller for RIG_TYPE_TOGGLE_MAN not implemented"), + __FUNCTION__); + break; + default: /* this is an error! */ ctrl->conf->type = RIG_TYPE_RX; @@ -1311,9 +1317,16 @@ exec_duplex_cycle (ctrl); break; - case RIG_TYPE_TOGGLE: + case RIG_TYPE_TOGGLE_AUTO: exec_toggle_cycle (ctrl); break; + + case RIG_TYPE_TOGGLE_MAN: + /** FIXME **/ + sat_log_log (SAT_LOG_LEVEL_BUG, + _("%s: Controller for RIG_TYPE_TOGGLE_MAN not implemented"), + __FUNCTION__); + break; default: /* invalid mode */ @@ -1590,7 +1603,7 @@ /** \brief Execute toggle mode cycle. * \param ctrl Pointer to the GtkRigCtrl widget. * - * This function executes a controller cycle when the device is of RIG_TYPE_TOGGLE. + * This function executes a controller cycle when the device is of RIG_TYPE_TOGGLE_AUTO. */ static void exec_toggle_cycle (GtkRigCtrl *ctrl) { @@ -1601,7 +1614,7 @@ /** \brief Execute TX mode cycle. * \param ctrl Pointer to the GtkRigCtrl widget. * - * This function executes a transmit cycle when the primary device is of RIG_TYPE_TOGGLE. + * This function executes a transmit cycle when the primary device is of RIG_TYPE_TOGGLE_AUTO. */ static void exec_toggle_tx_cycle (GtkRigCtrl *ctrl) Modified: trunk/src/radio-conf.h =================================================================== --- trunk/src/radio-conf.h 2010-07-09 09:31:17 UTC (rev 623) +++ trunk/src/radio-conf.h 2010-07-09 09:49:40 UTC (rev 624) @@ -35,11 +35,12 @@ /** \brief Radio types. */ typedef enum { - RIG_TYPE_RX = 0, /*!< Rig can only be used as receiver */ - RIG_TYPE_TX, /*!< Rig can only be used as transmitter */ - RIG_TYPE_TRX, /*!< Rig can be used as RX/TX (simplex only) */ - RIG_TYPE_DUPLEX, /*!< Rig is a full duplex radio, e.g. IC910 */ - RIG_TYPE_TOGGLE /*!< Special mode for FT-817, 857 and 897 */ + RIG_TYPE_RX = 0, /*!< Rig can only be used as receiver */ + RIG_TYPE_TX, /*!< Rig can only be used as transmitter */ + RIG_TYPE_TRX, /*!< Rig can be used as RX/TX (simplex only) */ + RIG_TYPE_DUPLEX, /*!< Rig is a full duplex radio, e.g. IC910 */ + RIG_TYPE_TOGGLE_AUTO, /*!< Special mode for FT-817, 857 and 897 using auto T/R switch */ + RIG_TYPE_TOGGLE_MAN /*!< Special mode for FT-817, 857 and 897 using manual T/R switch */ } rig_type_t; typedef enum { Modified: trunk/src/sat-pref-rig-editor.c =================================================================== --- trunk/src/sat-pref-rig-editor.c 2010-07-09 09:31:17 UTC (rev 623) +++ trunk/src/sat-pref-rig-editor.c 2010-07-09 09:49:40 UTC (rev 624) @@ -208,7 +208,8 @@ gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("TX only")); gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("Simplex TRX")); gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("Duplex TRX")); - gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("FT817/857/897")); + gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("FT817/857/897 (auto)")); + gtk_combo_box_append_text (GTK_COMBO_BOX (type), _("FT817/857/897 (manual)")); gtk_combo_box_set_active (GTK_COMBO_BOX (type), RIG_TYPE_RX); g_signal_connect (type, "changed", G_CALLBACK (type_changed), NULL); gtk_widget_set_tooltip_markup (type, @@ -227,10 +228,13 @@ "<b>Duplex:</b> The radio is a full duplex radio, such as the IC910H. "\ "Gpredict will be continuously tuning both uplink and downlink "\ "simultaneously and not care about PTT setting.\n\n"\ - "<b>FT817/857/897:</b> This is a special mode that can be used with "\ + "<b>FT817/857/897 (auto):</b> This is a special mode that can be used with "\ "YAESU FT-817, 857 and 897 radios. These radios do not allow computer "\ "control while in TX mode. Therefore, TX Doppler correction is applied "\ - "while the radio is in RX mode by toggling between VFO A/B.")); + "while the radio is in RX mode by toggling between VFO A/B.\n\n"\ + "<b>FT817/857/897 (manual):</b> This is similar to the previous mode except "\ + "that switching to TX is done by pressing the SPACE key on the keyboard. "\ + "Gpredict will then update the TX Doppler before actually switching to TX.")); gtk_table_attach_defaults (GTK_TABLE (table), type, 1, 3, 3, 4); /* ptt */ Modified: trunk/src/sat-pref-rig.c =================================================================== --- trunk/src/sat-pref-rig.c 2010-07-09 09:31:17 UTC (rev 623) +++ trunk/src/sat-pref-rig.c 2010-07-09 09:49:40 UTC (rev 624) @@ -711,29 +711,33 @@ gtk_tree_model_get (model, iter, coli, &type, -1); switch (type) { - case RIG_TYPE_RX: - g_object_set (renderer, "text", _("RX only"), NULL); - break; - - case RIG_TYPE_TX: - g_object_set (renderer, "text", _("TX only"), NULL); - break; + case RIG_TYPE_RX: + g_object_set (renderer, "text", _("RX only"), NULL); + break; - case RIG_TYPE_TRX: - g_object_set (renderer, "text", _("RX + TX"), NULL); - break; + case RIG_TYPE_TX: + g_object_set (renderer, "text", _("TX only"), NULL); + break; - case RIG_TYPE_DUPLEX: - g_object_set (renderer, "text", _("Duplex"), NULL); - break; - - case RIG_TYPE_TOGGLE: - g_object_set (renderer, "text", _("FT817/857/897"), NULL); - break; + case RIG_TYPE_TRX: + g_object_set (renderer, "text", _("RX + TX"), NULL); + break; - default: - g_object_set (renderer, "text", _("ERROR"), NULL); - break; + case RIG_TYPE_DUPLEX: + g_object_set (renderer, "text", _("Duplex"), NULL); + break; + + case RIG_TYPE_TOGGLE_AUTO: + g_object_set (renderer, "text", _("FT817/857/897 (auto)"), NULL); + break; + + case RIG_TYPE_TOGGLE_MAN: + g_object_set (renderer, "text", _("FT817/857/897 (man)"), NULL); + break; + + default: + g_object_set (renderer, "text", _("ERROR"), NULL); + break; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-07-09 09:31:23
|
Revision: 623 http://gpredict.svn.sourceforge.net/gpredict/?rev=623&view=rev Author: csete Date: 2010-07-09 09:31:17 +0000 (Fri, 09 Jul 2010) Log Message: ----------- Fix indentation Modified Paths: -------------- trunk/src/gtk-rig-ctrl.c Modified: trunk/src/gtk-rig-ctrl.c =================================================================== --- trunk/src/gtk-rig-ctrl.c 2010-06-18 10:08:48 UTC (rev 622) +++ trunk/src/gtk-rig-ctrl.c 2010-07-09 09:31:17 UTC (rev 623) @@ -11,7 +11,7 @@ More details can be found at the project home page: http://gpredict.oz9aec.net/ - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or @@ -135,7 +135,7 @@ GType -gtk_rig_ctrl_get_type () + gtk_rig_ctrl_get_type () { static GType gtk_rig_ctrl_type = 0; @@ -156,7 +156,7 @@ gtk_rig_ctrl_type = g_type_register_static (GTK_TYPE_VBOX, "GtkRigCtrl", >k_rig_ctrl_info, - 0); + 0); } return gtk_rig_ctrl_type; @@ -164,7 +164,7 @@ static void -gtk_rig_ctrl_class_init (GtkRigCtrlClass *class) + gtk_rig_ctrl_class_init (GtkRigCtrlClass *class) { GObjectClass *gobject_class; GtkObjectClass *object_class; @@ -179,13 +179,13 @@ parent_class = g_type_class_peek_parent (class); object_class->destroy = gtk_rig_ctrl_destroy; - + } static void -gtk_rig_ctrl_init (GtkRigCtrl *ctrl) + gtk_rig_ctrl_init (GtkRigCtrl *ctrl) { ctrl->sats = NULL; ctrl->target = NULL; @@ -197,7 +197,7 @@ ctrl->trsplist = NULL; ctrl->trsplock = FALSE; ctrl->tracking = FALSE; - g_static_mutex_init(&(ctrl->busy)); + g_static_mutex_init(&(ctrl->busy)); ctrl->engaged = FALSE; ctrl->delay = 1000; ctrl->timerid = 0; @@ -207,10 +207,10 @@ } static void -gtk_rig_ctrl_destroy (GtkObject *object) + gtk_rig_ctrl_destroy (GtkObject *object) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (object); - + /* stop timer */ if (ctrl->timerid > 0) g_source_remove (ctrl->timerid); @@ -245,7 +245,7 @@ * */ GtkWidget * -gtk_rig_ctrl_new (GtkSatModule *module) + gtk_rig_ctrl_new (GtkSatModule *module) { GtkWidget *widget; GtkWidget *table; @@ -265,11 +265,11 @@ /* store QTH */ GTK_RIG_CTRL (widget)->qth = module->qth; - if (GTK_RIG_CTRL(widget)->target !=NULL) { - /* get next pass for target satellite */ - GTK_RIG_CTRL (widget)->pass = get_next_pass (GTK_RIG_CTRL (widget)->target, - GTK_RIG_CTRL (widget)->qth, - 3.0); + if (GTK_RIG_CTRL(widget)->target !=NULL) { + /* get next pass for target satellite */ + GTK_RIG_CTRL (widget)->pass = get_next_pass (GTK_RIG_CTRL (widget)->target, + GTK_RIG_CTRL (widget)->qth, + 3.0); } /* initialise custom colors */ gdk_rgb_find_color (gtk_widget_get_colormap (widget), &ColBlack); @@ -299,7 +299,7 @@ rig_ctrl_timeout_cb, GTK_RIG_CTRL (widget)); - return widget; + return widget; } @@ -311,7 +311,7 @@ * of the controller and the rigator. */ void -gtk_rig_ctrl_update (GtkRigCtrl *ctrl, gdouble t) + gtk_rig_ctrl_update (GtkRigCtrl *ctrl, gdouble t) { gdouble satfreq; gchar *buff; @@ -387,7 +387,7 @@ * */ static -GtkWidget *create_downlink_widgets (GtkRigCtrl *ctrl) + GtkWidget *create_downlink_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; GtkWidget *vbox; @@ -452,7 +452,7 @@ * uplink frequency of the satellite and the radio. */ static -GtkWidget *create_uplink_widgets (GtkRigCtrl *ctrl) + GtkWidget *create_uplink_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; GtkWidget *vbox; @@ -501,7 +501,7 @@ ctrl->RigFreqUp = gtk_freq_knob_new (145890000.0, FALSE); gtk_box_pack_start_defaults (GTK_BOX (hbox2), ctrl->RigFreqUp); - + gtk_box_pack_start_defaults (GTK_BOX (vbox), hbox1); gtk_box_pack_start_defaults (GTK_BOX (vbox), hbox2); gtk_container_add (GTK_CONTAINER (frame), vbox); @@ -514,7 +514,7 @@ * \param ctrl Pointer to the GtkRigCtrl widget. */ static -GtkWidget *create_target_widgets (GtkRigCtrl *ctrl) + GtkWidget *create_target_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame,*table,*label,*satsel,*track; GtkWidget *tune,*trsplock,*hbox; @@ -563,24 +563,24 @@ /* buttons */ tune = gtk_button_new_with_label (_("T")); gtk_widget_set_tooltip_text (tune, - _("Tune the radio to this transponder. "\ - "The uplink and downlink will be set to the center of "\ - "the transponder passband. In case of beacons, only the "\ - "downlink will be tuned to the beacon frequency.")); + _("Tune the radio to this transponder. "\ + "The uplink and downlink will be set to the center of "\ + "the transponder passband. In case of beacons, only the "\ + "downlink will be tuned to the beacon frequency.")); g_signal_connect (tune, "clicked", G_CALLBACK (trsp_tune_cb), ctrl); trsplock = gtk_toggle_button_new_with_label (_("L")); gtk_widget_set_tooltip_text (trsplock, - _("Lock the uplink and the downlink to each other. "\ - "Whenever you change the downlink (in the controller "\ - "or on the dial, the uplink will track it according "\ - "to whether the transponder is inverting or not. "\ - "Similarly, if you change the uplink the downlink "\ - "will track it automatically.\n\n"\ - "If the downlink and uplink are initially out of sync "\ - "when you enable this function, "\ - "the current downlink frequency will be used as "\ - "baseline for setting the new uplink frequency.")); + _("Lock the uplink and the downlink to each other. "\ + "Whenever you change the downlink (in the controller "\ + "or on the dial, the uplink will track it according "\ + "to whether the transponder is inverting or not. "\ + "Similarly, if you change the uplink the downlink "\ + "will track it automatically.\n\n"\ + "If the downlink and uplink are initially out of sync "\ + "when you enable this function, "\ + "the current downlink frequency will be used as "\ + "baseline for setting the new uplink frequency.")); g_signal_connect (trsplock, "toggled", G_CALLBACK (trsp_lock_cb), ctrl); /* box for packing buttons */ @@ -646,7 +646,7 @@ static GtkWidget * -create_conf_widgets (GtkRigCtrl *ctrl) + create_conf_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame,*table,*label,*timer; GDir *dir = NULL; /* directory handle */ @@ -691,7 +691,7 @@ else { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to open hwconf dir (%s)"), - __FILE__, __LINE__, error->message); + __FILE__, __LINE__, error->message); g_clear_error (&error); } @@ -734,7 +734,7 @@ else { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to open hwconf dir (%s)"), - __FILE__, __LINE__, error->message); + __FILE__, __LINE__, error->message); g_clear_error (&error); } @@ -784,7 +784,7 @@ /** \brief Create count down widget */ static GtkWidget * -create_count_down_widgets (GtkRigCtrl *ctrl) + create_count_down_widgets (GtkRigCtrl *ctrl) { GtkWidget *frame; @@ -808,7 +808,7 @@ /** \brief Copy satellite from hash table to singly linked list. */ static void -store_sats (gpointer key, gpointer value, gpointer user_data) + store_sats (gpointer key, gpointer value, gpointer user_data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL( user_data); sat_t *sat = SAT (value); @@ -824,7 +824,7 @@ * This function is called when the user selects a new satellite. */ static void -sat_selected_cb (GtkComboBox *satsel, gpointer data) + sat_selected_cb (GtkComboBox *satsel, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gint i; @@ -880,8 +880,8 @@ } else { sat_log_log (SAT_LOG_LEVEL_BUG, - _("%s: Inconsistency detected in internal transponder data (%d,%d)"), - __FUNCTION__, i, n); + _("%s: Inconsistency detected in internal transponder data (%d,%d)"), + __FUNCTION__, i, n); } } @@ -959,7 +959,7 @@ * \param data Pointer to the GtkRigCtrl widget. */ static void -track_toggle_cb (GtkToggleButton *button, gpointer data) + track_toggle_cb (GtkToggleButton *button, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -979,7 +979,7 @@ * cycle delay. */ static void -delay_changed_cb (GtkSpinButton *spin, gpointer data) + delay_changed_cb (GtkSpinButton *spin, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -1005,7 +1005,7 @@ * BUG Doesn't prevent user to select same radio as in the secondary conf. */ static void -primary_rig_selected_cb (GtkComboBox *box, gpointer data) + primary_rig_selected_cb (GtkComboBox *box, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gchar *buff; @@ -1071,7 +1071,7 @@ * device for the secondary radio. This radio is used for uplink only. */ static void -secondary_rig_selected_cb (GtkComboBox *box, gpointer data) + secondary_rig_selected_cb (GtkComboBox *box, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); gchar *buff; @@ -1166,7 +1166,7 @@ * This function is called when the user toggles the "Engage" button. */ static void -rig_engaged_cb (GtkToggleButton *button, gpointer data) + rig_engaged_cb (GtkToggleButton *button, gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); @@ -1178,20 +1178,20 @@ ctrl->engaged = FALSE; ctrl->lasttxf = 0.0; ctrl->lastrxf = 0.0; - switch (ctrl->conf->type) { - case RIG_TYPE_TOGGLE: - unset_toggle (ctrl,ctrl->conf); - break; - default: - break; - } + switch (ctrl->conf->type) { + case RIG_TYPE_TOGGLE: + unset_toggle (ctrl,ctrl->conf); + break; + default: + break; + } } else { if (ctrl->conf == NULL) { /* we don't have a working configuration */ sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Controller does not have a valid configuration"), - __FUNCTION__); + __FUNCTION__); return; } @@ -1208,32 +1208,32 @@ else { switch (ctrl->conf->type) { - case RIG_TYPE_RX: - exec_rx_cycle (ctrl); - break; - - case RIG_TYPE_TX: - exec_tx_cycle (ctrl); - break; - - case RIG_TYPE_TRX: - exec_trx_cycle (ctrl); - break; - - case RIG_TYPE_DUPLEX: - exec_duplex_cycle (ctrl); - break; + case RIG_TYPE_RX: + exec_rx_cycle (ctrl); + break; - case RIG_TYPE_TOGGLE: - set_toggle (ctrl,ctrl->conf); - exec_toggle_cycle (ctrl); - break; - - default: - /* this is an error! */ - ctrl->conf->type = RIG_TYPE_RX; - exec_rx_cycle (ctrl); - break; + case RIG_TYPE_TX: + exec_tx_cycle (ctrl); + break; + + case RIG_TYPE_TRX: + exec_trx_cycle (ctrl); + break; + + case RIG_TYPE_DUPLEX: + exec_duplex_cycle (ctrl); + break; + + case RIG_TYPE_TOGGLE: + set_toggle (ctrl,ctrl->conf); + exec_toggle_cycle (ctrl); + break; + + default: + /* this is an error! */ + ctrl->conf->type = RIG_TYPE_RX; + exec_rx_cycle (ctrl); + break; } } } @@ -1279,48 +1279,48 @@ * \return Always TRUE to let the timer continue. */ static gboolean -rig_ctrl_timeout_cb (gpointer data) + rig_ctrl_timeout_cb (gpointer data) { GtkRigCtrl *ctrl = GTK_RIG_CTRL (data); - if (g_static_mutex_trylock(&(ctrl->busy))==FALSE) { + if (g_static_mutex_trylock(&(ctrl->busy))==FALSE) { sat_log_log (SAT_LOG_LEVEL_ERROR,_("%s missed the deadline"),__FUNCTION__); return TRUE; } - if (ctrl->conf2 != NULL) { + if (ctrl->conf2 != NULL) { exec_dual_rig_cycle (ctrl); } else { /* Execute controller cycle depending on primary radio type */ switch (ctrl->conf->type) { - - case RIG_TYPE_RX: - exec_rx_cycle (ctrl); - break; + + case RIG_TYPE_RX: + exec_rx_cycle (ctrl); + break; - case RIG_TYPE_TX: - exec_tx_cycle (ctrl); - break; + case RIG_TYPE_TX: + exec_tx_cycle (ctrl); + break; - case RIG_TYPE_TRX: - exec_trx_cycle (ctrl); - break; + case RIG_TYPE_TRX: + exec_trx_cycle (ctrl); + break; - case RIG_TYPE_DUPLEX: - exec_duplex_cycle (ctrl); - break; - - case RIG_TYPE_TOGGLE: - exec_toggle_cycle (ctrl); - break; + case RIG_TYPE_DUPLEX: + exec_duplex_cycle (ctrl); + break; + + case RIG_TYPE_TOGGLE: + exec_toggle_cycle (ctrl); + break; - default: - /* invalid mode */ - sat_log_log (SAT_LOG_LEVEL_ERROR, - _("%s: Invalid radio type %d. Setting type to RIG_TYPE_RX"), - __FUNCTION__, ctrl->conf->type); - ctrl->conf->type = RIG_TYPE_RX; + default: + /* invalid mode */ + sat_log_log (SAT_LOG_LEVEL_ERROR, + _("%s: Invalid radio type %d. Setting type to RIG_TYPE_RX"), + __FUNCTION__, ctrl->conf->type); + ctrl->conf->type = RIG_TYPE_RX; } } @@ -1332,8 +1332,8 @@ ctrl->engaged = FALSE; ctrl->errcnt = 0; sat_log_log (SAT_LOG_LEVEL_ERROR, - _("%s: MAX_ERROR_COUNT (%d) reached. Disengaging device!"), - __FUNCTION__, MAX_ERROR_COUNT); + _("%s: MAX_ERROR_COUNT (%d) reached. Disengaging device!"), + __FUNCTION__, MAX_ERROR_COUNT); //g_print ("ERROR. WROPS = %d\n", ctrl->wrops); } @@ -1422,16 +1422,16 @@ if (ctrl->tracking) { /* downlink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd + ctrl->dd - ctrl->conf->lo); + satfreqd + ctrl->dd - ctrl->conf->lo); /* uplink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ + ctrl->du - ctrl->conf->loup); + satfrequ + ctrl->du - ctrl->conf->loup); } else { gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd - ctrl->conf->lo); + satfreqd - ctrl->conf->lo); gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ - ctrl->conf->loup ); + satfrequ - ctrl->conf->loup ); } tmpfreq = gtk_freq_knob_get_value(GTK_FREQ_KNOB(ctrl->RigFreqDown)); @@ -1536,16 +1536,16 @@ if (ctrl->tracking) { /* downlink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd + ctrl->dd - ctrl->conf->lo); + satfreqd + ctrl->dd - ctrl->conf->lo); /* uplink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ + ctrl->du - ctrl->conf->loup); + satfrequ + ctrl->du - ctrl->conf->loup); } else { gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd - ctrl->conf->lo); + satfreqd - ctrl->conf->lo); gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ - ctrl->conf->loup); + satfrequ - ctrl->conf->loup); } tmpfreq = gtk_freq_knob_get_value(GTK_FREQ_KNOB(ctrl->RigFreqUp)); @@ -1594,8 +1594,8 @@ */ static void exec_toggle_cycle (GtkRigCtrl *ctrl) { - exec_rx_cycle (ctrl); - exec_toggle_tx_cycle (ctrl); + exec_rx_cycle (ctrl); + exec_toggle_tx_cycle (ctrl); } /** \brief Execute TX mode cycle. @@ -1618,21 +1618,21 @@ Note: If ctrl->lasttxf = 0.0 the sync has been invalidated (e.g. user pressed "tune") and no need to execute the dial feedback. */ - if (ctrl->engaged && ctrl->conf->ptt) { + if (ctrl->engaged && ctrl->conf->ptt) { ptt = get_ptt (ctrl, ctrl->conf); } if ((ctrl->engaged) && (ctrl->lasttxf > 0.0)) { - if (ptt == TRUE) { - printf("PTT TRUE\n"); + if (ptt == TRUE) { + printf("PTT TRUE\n"); if (!get_freq_toggle (ctrl, ctrl->conf, &readfreq)) { - /* error => use a passive value */ - readfreq = ctrl->lasttxf; - ctrl->errcnt++; - } - } else { - readfreq = ctrl->lasttxf; - } + /* error => use a passive value */ + readfreq = ctrl->lasttxf; + ctrl->errcnt++; + } + } else { + readfreq = ctrl->lasttxf; + } if (fabs (readfreq - ctrl->lasttxf) >= 1.0) { dialchanged = TRUE; @@ -1673,16 +1673,16 @@ if (ctrl->tracking) { /* downlink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd + ctrl->dd - ctrl->conf->lo); + satfreqd + ctrl->dd - ctrl->conf->lo); /* uplink */ gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ + ctrl->du - ctrl->conf->loup); + satfrequ + ctrl->du - ctrl->conf->loup); } else { gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqDown), - satfreqd - ctrl->conf->lo); + satfreqd - ctrl->conf->lo); gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), - satfrequ - ctrl->conf->loup); + satfrequ - ctrl->conf->loup); } tmpfreq = gtk_freq_knob_get_value(GTK_FREQ_KNOB(ctrl->RigFreqUp)); @@ -1702,8 +1702,8 @@ frequency from the rig. */ if (ptt){ get_freq_toggle (ctrl, ctrl->conf, &tmpfreq); - } - ctrl->lasttxf = tmpfreq; + } + ctrl->lasttxf = tmpfreq; } else { ctrl->errcnt++; @@ -1720,14 +1720,14 @@ */ static void exec_duplex_cycle (GtkRigCtrl *ctrl) { - if (ctrl->engaged) { - /* Downlink */ - set_vfo (ctrl, ctrl->conf->vfoDown); - exec_rx_cycle (ctrl); - - /* Uplink */ - set_vfo (ctrl, ctrl->conf->vfoUp); - exec_tx_cycle (ctrl); + if (ctrl->engaged) { + /* Downlink */ + set_vfo (ctrl, ctrl->conf->vfoDown); + exec_rx_cycle (ctrl); + + /* Uplink */ + set_vfo (ctrl, ctrl->conf->vfoUp); + exec_tx_cycle (ctrl); } else { /* still execute cycles to update UI widgets @@ -1818,7 +1818,7 @@ /* if no dial change on downlink perform forward tracking on downlink and execute uplink controller too. */ - + satfreqd = gtk_freq_knob_get_value (GTK_FREQ_KNOB (ctrl->SatFreqDown)); if (ctrl->tracking) { /* downlink */ @@ -1854,19 +1854,19 @@ /* check if uplink dial has changed */ if ((ctrl->engaged) && (ctrl->lasttxf > 0.0)) { - + if (!get_freq_simplex (ctrl, ctrl->conf2, &readfreq)) { /* error => use a passive value */ readfreq = ctrl->lasttxf; ctrl->errcnt++; } - + if (fabs (readfreq - ctrl->lasttxf) >= 1.0) { dialchanged = TRUE; - + gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->RigFreqUp), readfreq); ctrl->lasttxf = readfreq; - + /* doppler shift; only if we are tracking */ if (ctrl->tracking) { satfrequ = readfreq - ctrl->du + ctrl->conf2->loup; @@ -1896,7 +1896,7 @@ } tmpfreq = gtk_freq_knob_get_value(GTK_FREQ_KNOB(ctrl->RigFreqDown)); - + /* if device is engaged, send freq command to radio */ if ((ctrl->engaged) && (fabs(ctrl->lastrxf - tmpfreq) >= 1.0)) { if (set_freq_simplex (ctrl, ctrl->conf, tmpfreq)) { @@ -1975,15 +1975,15 @@ if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to create socket"), - __FILE__, __LINE__); + __FILE__, __LINE__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d Network socket created successfully"), - __FILE__, __LINE__); + __FILE__, __LINE__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -1995,13 +1995,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to connect to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d: Connection opened to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); } if (conf->ptt == PTT_TYPE_CAT) { @@ -2019,7 +2019,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: SIZE ERROR %d / %d"), - __FILE__, __LINE__, written, size); + __FILE__, __LINE__, written, size); } g_free (buff); @@ -2029,33 +2029,33 @@ if (buff == NULL) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Failed to allocate 128 bytes (yes, this means trouble)"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); #ifndef WIN32 shutdown (sock, SHUT_RDWR); #else shutdown (sock, SD_BOTH); #endif - + close (sock); return FALSE; } - + size = read (sock, buff, 127); if (size == 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Got 0 bytes from rigctld"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%s: Read %d bytes from rigctld"), - __FILE__, __FUNCTION__, size); + __FILE__, __FUNCTION__, size); buff[size] = 0; vbuff = g_strsplit (buff, "\n", 3); pttstat = g_ascii_strtoull (vbuff[0], NULL, 0); //FIXME base = 0 ok? - + g_free (buff); g_strfreev (vbuff); } @@ -2092,21 +2092,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2118,13 +2118,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); } /* send command */ @@ -2135,7 +2135,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } g_free (buff); @@ -2172,21 +2172,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2198,13 +2198,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); } /* send command */ @@ -2215,7 +2215,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } g_free (buff); @@ -2247,21 +2247,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2273,13 +2273,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); } /* send command */ @@ -2290,7 +2290,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } g_free (buff); @@ -2322,21 +2322,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2348,13 +2348,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, conf->host, conf->port); + __FUNCTION__, conf->host, conf->port); } /* send command */ @@ -2365,7 +2365,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } g_free (buff); @@ -2405,7 +2405,7 @@ if (freq == NULL) { sat_log_log (SAT_LOG_LEVEL_BUG, _("%s:%d: NULL storage."), - __FILE__, __LINE__); + __FILE__, __LINE__); return FALSE; } @@ -2414,15 +2414,15 @@ if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to create socket"), - __FILE__, __LINE__); + __FILE__, __LINE__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d Network socket created successfully"), - __FILE__, __LINE__); + __FILE__, __LINE__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2434,13 +2434,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to connect to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d: Connection opened to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); } /* send command */ @@ -2451,7 +2451,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: SIZE ERROR %d / %d"), - __FILE__, __LINE__, written, size); + __FILE__, __LINE__, written, size); } g_free (buff); @@ -2461,7 +2461,7 @@ if (buff == NULL) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Failed to allocate 128 bytes (yes, this means trouble)"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); #ifndef WIN32 shutdown (sock, SHUT_RDWR); @@ -2472,22 +2472,22 @@ close (sock); return FALSE; } - + size = read (sock, buff, 127); if (size == 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Got 0 bytes from rigctld"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%s: Read %d bytes from rigctld"), - __FILE__, __FUNCTION__, size); + __FILE__, __FUNCTION__, size); buff[size] = 0; vbuff = g_strsplit (buff, "\n", 3); *freq = g_ascii_strtod (vbuff[0], NULL); - + g_free (buff); g_strfreev (vbuff); } @@ -2524,7 +2524,7 @@ if (freq == NULL) { sat_log_log (SAT_LOG_LEVEL_BUG, _("%s:%d: NULL storage."), - __FILE__, __LINE__); + __FILE__, __LINE__); return FALSE; } @@ -2533,15 +2533,15 @@ if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to create socket"), - __FILE__, __LINE__); + __FILE__, __LINE__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d Network socket created successfully"), - __FILE__, __LINE__); + __FILE__, __LINE__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(conf->host); @@ -2553,13 +2553,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to connect to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%d: Connection opened to %s:%d"), - __FILE__, __LINE__, conf->host, conf->port); + __FILE__, __LINE__, conf->host, conf->port); } /* send command */ @@ -2570,7 +2570,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: SIZE ERROR %d / %d"), - __FILE__, __LINE__, written, size); + __FILE__, __LINE__, written, size); } g_free (buff); @@ -2580,7 +2580,7 @@ if (buff == NULL) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Failed to allocate 128 bytes (yes, this means trouble)"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); #ifndef WIN32 shutdown (sock, SHUT_RDWR); @@ -2591,22 +2591,22 @@ close (sock); return FALSE; } - + size = read (sock, buff, 127); if (size == 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%s: Got 0 bytes from rigctld"), - __FILE__, __FUNCTION__); + __FILE__, __FUNCTION__); } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s:%s: Read %d bytes from rigctld"), - __FILE__, __FUNCTION__, size); + __FILE__, __FUNCTION__, size); buff[size] = 0; vbuff = g_strsplit (buff, "\n", 3); *freq = g_ascii_strtod (vbuff[0], NULL); - + g_free (buff); g_strfreev (vbuff); } @@ -2638,21 +2638,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(ctrl->conf->host); @@ -2664,13 +2664,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, ctrl->conf->host, ctrl->conf->port); + __FUNCTION__, ctrl->conf->host, ctrl->conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, ctrl->conf->host, ctrl->conf->port); + __FUNCTION__, ctrl->conf->host, ctrl->conf->port); } /* prepare command */ @@ -2695,21 +2695,21 @@ size = 8; break; - default: + default: sat_log_log (SAT_LOG_LEVEL_BUG, _("%s: Invalid VFO argument. Using VFOA."), __FUNCTION__); buff = g_strdup_printf ("V VFOA"); size = 6; break; - } - + } + /* send command */ written = send(sock, buff, size, 0); if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } g_free (buff); @@ -2834,8 +2834,8 @@ /* check if there is a target satellite */ if G_UNLIKELY (ctrl->target == NULL) { sat_log_log (SAT_LOG_LEVEL_MSG, - _("%s:%s: GtkSatModule has no target satellite."), - __FILE__, __FUNCTION__); + _("%s:%s: GtkSatModule has no target satellite."), + __FILE__, __FUNCTION__); return; } @@ -2893,7 +2893,7 @@ else { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s:%d: Failed to open hwconf dir (%s)"), - __FILE__, __LINE__, error->message); + __FILE__, __LINE__, error->message); g_clear_error (&error); } @@ -2920,17 +2920,17 @@ /* ensure that we have a useable transponder config */ if ((ctrl->trsp->downlow > 0.0) && (ctrl->trsp->uplow > 0.0)) { - + down = gtk_freq_knob_get_value (GTK_FREQ_KNOB (ctrl->SatFreqDown)); delta = down - ctrl->trsp->downlow; - + if (ctrl->trsp->invert) { up = ctrl->trsp->uphigh - delta; } else { up = ctrl->trsp->uplow + delta; } - + gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->SatFreqUp), up); } } @@ -2955,14 +2955,14 @@ up = gtk_freq_knob_get_value (GTK_FREQ_KNOB (ctrl->SatFreqUp)); delta = up - ctrl->trsp->uplow; - + if (ctrl->trsp->invert) { down = ctrl->trsp->downhigh - delta; } else { down = ctrl->trsp->downlow + delta; } - + gtk_freq_knob_set_value (GTK_FREQ_KNOB (ctrl->SatFreqDown), down); } } @@ -2998,7 +2998,7 @@ cantx = FALSE; } - + g_free (conf->name); if (conf->host) g_free (conf->host); @@ -3016,21 +3016,21 @@ struct hostent *h; struct sockaddr_in ServAddr; gint sock; /*!< Network socket */ - + /* create socket */ sock = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP); if (sock < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to create socket"), - __FUNCTION__); + __FUNCTION__); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Network socket created successfully"), - __FUNCTION__); + __FUNCTION__); } - + memset(&ServAddr, 0, sizeof(ServAddr)); /* Zero out structure */ ServAddr.sin_family = AF_INET; /* Internet address family */ h = gethostbyname(ctrl->conf->host); @@ -3042,13 +3042,13 @@ if (status < 0) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: Failed to connect to %s:%d"), - __FUNCTION__, ctrl->conf->host, ctrl->conf->port); + __FUNCTION__, ctrl->conf->host, ctrl->conf->port); return FALSE; } else { sat_log_log (SAT_LOG_LEVEL_DEBUG, _("%s: Connection opened to %s:%d"), - __FUNCTION__, ctrl->conf->host, ctrl->conf->port); + __FUNCTION__, ctrl->conf->host, ctrl->conf->port); } /* send command */ @@ -3056,7 +3056,7 @@ if (written != size) { sat_log_log (SAT_LOG_LEVEL_ERROR, _("%s: SIZE ERROR %d / %d"), - __FUNCTION__, written, size); + __FUNCTION__, written, size); } #ifndef WIN32 @@ -3069,5 +3069,5 @@ ctrl->wrops++; - return TRUE; + return TRUE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-06-18 10:08:54
|
Revision: 622 http://gpredict.svn.sourceforge.net/gpredict/?rev=622&view=rev Author: csete Date: 2010-06-18 10:08:48 +0000 (Fri, 18 Jun 2010) Log Message: ----------- Applied patch 3009727: Free satellite hash references. Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/gtk-sat-data.c trunk/src/gtk-sat-data.h trunk/src/gtk-sat-module.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-06-18 09:49:11 UTC (rev 621) +++ trunk/ChangeLog 2010-06-18 10:08:48 UTC (rev 622) @@ -3,6 +3,12 @@ * src/main.c: Applied patch 3009725: Delete Explicit Call to gtk_set_locale. + * src/gtk-sat-data.[ch]: + Added function to free satellite name, nickname and website (patch 3009727). + + * src/gtk-sat-module.c: + Use new gtk_sat_data_free_sat() function (patch 3009727). + 2010-05-23 Alexandru Csete <oz9aec at gmail.com> Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-06-18 09:49:11 UTC (rev 621) +++ trunk/NEWS 2010-06-18 10:08:48 UTC (rev 622) @@ -35,6 +35,7 @@ - Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). - Applied patch 3005548: Cut and Paste Error In print_pass.h (Thanks to Charles Suprin AA1VS). - Applied patch 3009725: Delete Explicit Call to gtk_set_locale (Thanks to Charles Suprin AA1VS). +- Applied patch 3009727: Free satellite hash references (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/gtk-sat-data.c =================================================================== --- trunk/src/gtk-sat-data.c 2010-06-18 09:49:11 UTC (rev 621) +++ trunk/src/gtk-sat-data.c 2010-06-18 10:08:48 UTC (rev 622) @@ -301,3 +301,31 @@ gtk_sat_data_init_sat (dest, qth); } + + +/** \brief Free satellite data + * \param sat Pointer to the satellite data to free + * + * This function frees the memory that has been dyunamically allocated + * when creating a new satellite object. + */ +void gtk_sat_data_free_sat(sat_t *sat) +{ + + if (sat){ + if (sat->name){ + g_free(sat->name); + sat->name=NULL; + } + if (sat->nickname){ + g_free(sat->nickname); + sat->nickname=NULL; + } + if (sat->website){ + g_free(sat->website); + sat->website=NULL; + } + + g_free(sat); + } +} Modified: trunk/src/gtk-sat-data.h =================================================================== --- trunk/src/gtk-sat-data.h 2010-06-18 09:49:11 UTC (rev 621) +++ trunk/src/gtk-sat-data.h 2010-06-18 10:08:48 UTC (rev 622) @@ -36,5 +36,5 @@ gint gtk_sat_data_read_sat (gint catnum, sat_t *sat); void gtk_sat_data_init_sat (sat_t *sat, qth_t *qth); void gtk_sat_data_copy_sat (const sat_t *source, sat_t *dest, qth_t *qth); - +void gtk_sat_data_free_sat (sat_t *sat); #endif Modified: trunk/src/gtk-sat-module.c =================================================================== --- trunk/src/gtk-sat-module.c 2010-06-18 09:49:11 UTC (rev 621) +++ trunk/src/gtk-sat-module.c 2010-06-18 10:08:48 UTC (rev 622) @@ -80,6 +80,7 @@ const gchar *cfgfile); static void gtk_sat_module_load_sats (GtkSatModule *module); +static void gtk_sat_module_free_sat (gpointer sat); static gboolean gtk_sat_module_timeout_cb (gpointer module); static void gtk_sat_module_update_sat (gpointer key, gpointer val, @@ -165,7 +166,7 @@ module->satellites = g_hash_table_new_full (g_int_hash, g_int_equal, g_free, - g_free); + gtk_sat_module_free_sat); module->rotctrlwin = NULL; module->rotctrl = NULL; @@ -703,6 +704,15 @@ } +/** \brief Free satellite data + * + * This function is called automatically for each satellite when + * the hash table is destroyed. + */ +static void gtk_sat_module_free_sat (gpointer sat) +{ + gtk_sat_data_free_sat (SAT(sat)); +} /** \brief Module timeout callback. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-06-18 09:49:17
|
Revision: 621 http://gpredict.svn.sourceforge.net/gpredict/?rev=621&view=rev Author: csete Date: 2010-06-18 09:49:11 +0000 (Fri, 18 Jun 2010) Log Message: ----------- Applied patch 3009725: Delete Explicit Call to gtk_set_locale. Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/main.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-23 12:10:59 UTC (rev 620) +++ trunk/ChangeLog 2010-06-18 09:49:11 UTC (rev 621) @@ -1,3 +1,9 @@ +2010-06-18 Alexandru Csete <oz9aec at gmail.com> + + * src/main.c: + Applied patch 3009725: Delete Explicit Call to gtk_set_locale. + + 2010-05-23 Alexandru Csete <oz9aec at gmail.com> * src/print-pass.h: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-23 12:10:59 UTC (rev 620) +++ trunk/NEWS 2010-06-18 09:49:11 UTC (rev 621) @@ -34,6 +34,7 @@ - Applied patch 3002345: Free catfilename (Thanks to Charles Suprin AA1VS). - Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). - Applied patch 3005548: Cut and Paste Error In print_pass.h (Thanks to Charles Suprin AA1VS). +- Applied patch 3009725: Delete Explicit Call to gtk_set_locale (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/main.c =================================================================== --- trunk/src/main.c 2010-05-23 12:10:59 UTC (rev 620) +++ trunk/src/main.c 2010-06-18 09:49:11 UTC (rev 621) @@ -120,7 +120,6 @@ bind_textdomain_codeset (PACKAGE, "UTF-8"); textdomain (PACKAGE); #endif - gtk_set_locale (); gtk_init (&argc, &argv); context = g_option_context_new (""); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-05-23 12:11:05
|
Revision: 620 http://gpredict.svn.sourceforge.net/gpredict/?rev=620&view=rev Author: csete Date: 2010-05-23 12:10:59 +0000 (Sun, 23 May 2010) Log Message: ----------- Applied patch 3005548: Cut and Paste Error In print_pass.h Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/print-pass.h Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-20 19:44:15 UTC (rev 619) +++ trunk/ChangeLog 2010-05-23 12:10:59 UTC (rev 620) @@ -1,3 +1,9 @@ +2010-05-23 Alexandru Csete <oz9aec at gmail.com> + + * src/print-pass.h: + Applied patch 3005548: Cut and Paste Error In print_pass.h + + 2010-05-20 Alexandru Csete <oz9aec at gmail.com> * src/sgpsdp/sgp4sdp4.c: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-20 19:44:15 UTC (rev 619) +++ trunk/NEWS 2010-05-23 12:10:59 UTC (rev 620) @@ -33,6 +33,7 @@ - Applied patch 3002344: Remove Uninitialized Jump (Thanks to Charles Suprin AA1VS). - Applied patch 3002345: Free catfilename (Thanks to Charles Suprin AA1VS). - Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). +- Applied patch 3005548: Cut and Paste Error In print_pass.h (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/print-pass.h =================================================================== --- trunk/src/print-pass.h 2010-05-20 19:44:15 UTC (rev 619) +++ trunk/src/print-pass.h 2010-05-23 12:10:59 UTC (rev 620) @@ -25,8 +25,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, visit http://www.fsf.org/ */ -#ifndef SAVE_PASS_H -#define SAVE_PASS_H 1 +#ifndef PRINT_PASS_H +#define PRINT_PASS_H 1 #include <gtk/gtk.h> #include "sat-pass-dialogs.h" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-05-20 19:44:25
|
Revision: 619 http://gpredict.svn.sourceforge.net/gpredict/?rev=619&view=rev Author: csete Date: 2010-05-20 19:44:15 +0000 (Thu, 20 May 2010) Log Message: ----------- Applied patch 3002348: Option context never freed (Thanks to Charles Suprin AA1VS). Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/main.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/ChangeLog 2010-05-20 19:44:15 UTC (rev 619) @@ -6,7 +6,10 @@ * src/first-time.c: Applied patch 3002345: Free catfilename. + * src/main.c: + Applied patch 3002348: Option context never freed. + 2010-05-04 Alexandru Csete <oz9aec at gmail.com> * src/gtk-sky-at-glance.c: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/NEWS 2010-05-20 19:44:15 UTC (rev 619) @@ -32,6 +32,7 @@ - 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). - Applied patch 3002345: Free catfilename (Thanks to Charles Suprin AA1VS). +- Applied patch 3002348: Option context never freed (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/main.c =================================================================== --- trunk/src/main.c 2010-05-20 19:33:58 UTC (rev 618) +++ trunk/src/main.c 2010-05-20 19:44:15 UTC (rev 619) @@ -185,6 +185,7 @@ gtk_main (); + g_option_context_free(context); #ifdef WIN32 // Cleanup Windozze Sockets CloseWinSock2(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cs...@us...> - 2010-05-20 19:34:04
|
Revision: 618 http://gpredict.svn.sourceforge.net/gpredict/?rev=618&view=rev Author: csete Date: 2010-05-20 19:33:58 +0000 (Thu, 20 May 2010) Log Message: ----------- Applied patch 3002345: Free catfilename (Thanks to Charles Suprin AA1VS). Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/first-time.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-05-20 19:22:07 UTC (rev 617) +++ trunk/ChangeLog 2010-05-20 19:33:58 UTC (rev 618) @@ -3,7 +3,10 @@ * src/sgpsdp/sgp4sdp4.c: Applied patch 3002344: Remove Uninitialized Jump. + * src/first-time.c: + Applied patch 3002345: Free catfilename. + 2010-05-04 Alexandru Csete <oz9aec at gmail.com> * src/gtk-sky-at-glance.c: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-05-20 19:22:07 UTC (rev 617) +++ trunk/NEWS 2010-05-20 19:33:58 UTC (rev 618) @@ -31,6 +31,7 @@ - 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). +- Applied patch 3002345: Free catfilename (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/first-time.c =================================================================== --- trunk/src/first-time.c 2010-05-20 19:22:07 UTC (rev 617) +++ trunk/src/first-time.c 2010-05-20 19:33:58 UTC (rev 618) @@ -626,6 +626,7 @@ } g_free (source); } + g_free (catfilename); } } g_dir_close (srcdir); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
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. |