OZ9AEC

 
  • Increase font size
  • Default font size
  • Decrease font size
Home Gpredict Engineering Blog
Gpredict Blog and News

Daily Gpredict builds for Ubuntu

Print PDF

Daily Gpredict builds for UbuntuThanks to Jan Simon, DL2ZXA, we now have daily builds of Gpredict for Ubuntu 10.04 - 12.04, both 32 and 64 bit. Jan's recipe fetches the code imported from SourceForge, merges it with the translations done in the Launchpad, then builds the packages and puts them in the Gpredict teams Daily builds PPA. You can use this PPA as you would use any other PPA; if you don't know how check out the instructions on the PPA page. Obviously, this is only recommended for testing and not for production use.

 

Module-wide satellite selection in Gpredict

Print PDF

Up until now, users of Gpredict could click on a satellite in any view to make that satellite selected. For most views, selecting a satellite meant highlighting it and showing some additional info about it, or for the case of single satellite view to display the data for that satellite. In case you are not familiar with the terms module and view in Gpredict, a module is a logical object which groups a number of satellites and a ground station together, while views are the display widgets used to visualize the satellite data in different ways like map, list, polar plot, etc. A module can have any number of views laid out in a grid.

Read more...
 

Gpredict 1.3 released

Print PDF

Gpredict 1.3 has been packaged and released. The source code is already available from the SourceForge download site. Binary packages will follow soon.

Read more...
 

Improved search in the Gpredict saetllite selector

Print PDF

Charles AA1VS has done some cool tweaking to the search functionality in the Gpredict satellite selector. Check out the video below to see how it works.

Read more...
 

Automatic update in the sky at a glance view

Print PDF

The Sky at a glance time line view in Gpredict 1.3 is updating itself as time passes. This video demo shows this feature in highly throttled simulated real time mode as well as in manual time control mode.

Read more...
 

Gpredict 1.2 released

Print PDF

After one year of development, bug fixing and testing we have decided that it was time to make a new release of Gpredict. This release features several new features such as the rewritten layout engine as well as lots of bug fixes.

Read more...
 

Nice review of Gpredict

Print PDF

I stumbled upon this nice review of Gpredict Jack Wallen at ghacks.net : Track satellites with Gpredict.

It's always good to hear what other people think about it and I was particularly happy to read that Gpredict is an incredibly simple to use tool that will allow anyone to track multiple satellites quickly and easily. This was indeed one of the primary objectives when designing the concept :)

In case you haven't already seen them, check out some screenshots of the next version (1.2) to be released soon.

 

Satellite Tooltips

Print PDF

Satllite tooltip in GpredictYou may have already seen tooltips in the Gpredict user interface. I have made extensive use of them for providing short description of the functionality of the GUI controls all over the application. Lately, I have felt a desire to extend the usage of tooltips to also include graphical objects like satellites shown on the map or the passes shown in the "Sky at a glance" module.

Gpredict uses GooCanvas for graphics, which adds a the "missing" 2D canvas library to Gtk+. Since version 0.15 GooCanvas includes support for Gtk+-like tooltips for any objects on the canvas. This is really great since it simplifies the effort from messing with own popup windows to using single line API calls.

Read more...
 

Gpredict in the Linux Journal

Print PDF

.

I noticed today January 2010 issue of Linux Journal has amateur radio as it's main topic. In fact, the whole front page is a big Amateur Radio and Linux headline.

There are three articles about amateur and several great ham radio apps for Linux are described in these articles: Fldigi, Xlog, Xastir, Gpredict and GNU Radio. Needless to say, I was very happy to see Gpredict listed there. I have attached an incomplete cut from the magazine, but you will have to get your own copy to read the whole article.

You can get a PDF copy for $5.99 at http://www.linuxjournal.com/ham. Enjoy!

 

Coming up in Gpredict 1.2

Print PDF

After fixing several major and minor bugs in Gpredict 1.1 it was time to look at what new cool features version 1.2 should include. Fortunately, there is a nice list of feature requests from users that have been accumulated over time so all I had to do was to pick one and start working on it. This time I picked improvement of the layout engine.

New Layout Engine

I think we can agree that Gpredict is already one of the most flexible satellite tracking application applications when it comes to customising how the tracking data is presented to the user. In version 1.1 the user can chose between four different visualisation modules that can be arranged in many different layouts. Despite this flexibility, the available options are still limited to a fixed number of possibilities that is more or less hard coded into the software. I wanted to change this into something more generic that does not put any hard limits on what is possible.

I decided that the best and easiest way to accomplish this – also considering the limitations of the underlying Gtk+ toolkit – was to allow the user to place any number of views in a virtual grid. This means that when the user selects a given view to include in the module he/she has to specify the grid-coordinates for the module. The size of the grid will then be automatically determined according to the specified coordinates for all modules.

As of writing, the only way to create these fancy layouts is to specify it manually using an array of integers. The array has 5 numbers for each view:

  1. The first number is the view type
    • 0: List view (table)
    • 1: Map view
    • 2: Polar view
    • 3: Single satellite view
    • 4: Event list view (to be implemented)
  2. The second number is the left-attach coordinate of the view starting from 0
  3. The third number is the right-attach coordinate of the view
  4. The fourth number is the top-attach coordinate of the view starting from 0
  5. The third number is the bottom-attach coordinate of the view
The coordinate system of the grid has origin (0,0) in the top left corner. So, the layout code for the module shown above is:
1;0;3;0;3;0;0;3;3;4;2;3;4;0;2;3;3;4;2;4

Creating layouts this way is really fun for me, though I fear it would scare the hell out of regular users — in particular those who are just trying Ubuntu Linux for the first time. Obviously, a better configurator GUI is needed. To begin with, Gpredict 1.2 will include a set of pre-configured layouts and still allow to enter the layout code manually for custom configurations. The user manual will describe the layout configuration in detail. I hope then that somebody will create a fancy drag-and-drop layout configurator for a later release.

If you know me you have by now figured out that the primary reason for this new feature was my desire to be able to make cool video recordings of satellite passes such as this one (yes, that's Gpredict 1.2 in action).

Event List View

Now that Gpredict allows creating complex layouts, the next problem is the lack of views. Currently, there are only four different kind of view (shown on the screnshot above) and few more would be really nice to have. Ideas that have been tossed around over the years include:

  • Sky view – showing a photographic view of the sky
  • Space view – a camera following (or attached to) the satellite showing the Earth from space
  • Event list view – showing a list of upcoming events and counting down to the event.
For version 1.2, I expect to implement the last one – Event list view – simply because it is relatively easy. It will show the satellites tracked in the module with a count down clock to their next AOS (or LOS if they are within range). Alternatively, the user will be able to select showing the time of AOS/LOS instead of the count down. The list will be sortable according to either satellite name or time.

I hope you are as excited about the next release as I am. Feel free to leave any thoughts or comments you might have!

 
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  3 
  •  Next 
  •  End 
  • »


Page 1 of 3