A aviation & planes forum. AviationBanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » AviationBanter forum » rec.aviation newsgroups » Soaring
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Igc file help. Computer science



 
 
Thread Tools Display Modes
  #1  
Old October 31st 18, 05:59 PM posted to rec.aviation.soaring
[email protected]
external usenet poster
 
Posts: 4
Default Igc file help. Computer science


Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!
  #2  
Old October 31st 18, 06:02 PM posted to rec.aviation.soaring
Ben Hirashima
external usenet poster
 
Posts: 41
Default Igc file help. Computer science

On Wednesday, October 31, 2018 at 10:59:48 AM UTC-7, wrote:
Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!


An IGC file is just a text file. You can search Google for the format specification.
  #3  
Old October 31st 18, 06:12 PM posted to rec.aviation.soaring
[email protected]
external usenet poster
 
Posts: 4
Default Igc file help. Computer science

I did, but i can’t seem to find the format.
  #4  
Old October 31st 18, 06:15 PM posted to rec.aviation.soaring
David Hirst
external usenet poster
 
Posts: 44
Default Igc file help. Computer science

On Thursday, November 1, 2018 at 7:12:35 AM UTC+13, wrote:
I did, but i can’t seem to find the format.


Google "IGC file format" and you'll find all the info you could ever want.

DH TX
  #5  
Old October 31st 18, 09:55 PM posted to rec.aviation.soaring
Tim Newport-Peace[_4_]
external usenet poster
 
Posts: 49
Default Igc file help. Computer science

At 18:15 31 October 2018, David Hirst wrote:
On Thursday, November 1, 2018 at 7:12:35 AM UTC+13,
wro=
te:
I did, but i can=E2=80=99t seem to find the format.


Google "IGC file format" and you'll find all the info you could ever

want.

DH TX

http://www.ukiws.demon.co.uk/GFAC/do..._spec_gnss.pdf

The file format is from page 17.


  #6  
Old October 31st 18, 10:30 PM posted to rec.aviation.soaring
Martin Gregorie[_6_]
external usenet poster
 
Posts: 699
Default Igc file help. Computer science

On Wed, 31 Oct 2018 21:55:10 +0000, Tim Newport-Peace wrote:

http://www.ukiws.demon.co.uk/GFAC/do..._spec_gnss.pdf

The file format is from page 17.

I have written a Java package that can read IGC logs. They are read into
a container class that can be used to scan, analyse and write out logs or
parts thereof.

The package can do the same for lists of waypoints. It currently handles
CAI, CUP and EW formats but is designed to be easily extensible for other
waypoint formats. Its currently being used to create the UK landouts and
CGC Fieldbook files some of you are using, so is reasonably well tested.
The code documented using Javadocs but this does assume that its users
can program in Java and have a working understanding of how IGC logs and
waypoint lists are structured.

If this stuff would be useful to any of you, I'm happy to publish it as
open source under the GPL2 license.


--
Martin | martin at
Gregorie | gregorie dot org
  #7  
Old October 31st 18, 06:13 PM posted to rec.aviation.soaring
David Hirst
external usenet poster
 
Posts: 44
Default Igc file help. Computer science

On Thursday, November 1, 2018 at 6:59:48 AM UTC+13, wrote:
Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!


The IGC file records the GPS time, GPS altitude and GPS position. It can also record barometric altitude, engine noise levels and other manufacturer-specific information. As previously stated, a lot of the format info is already out there and the file itself is not hard to decipher. The decision is in what to do with all that info.
SeeYou already processes IGC data to generate flight statistics, so a project in that area probably won't generate anything new. John Wharington used IGC data from multiple gliders at the 2017 worlds in Benalla to generate a lot of useful statistics around how close individual gliders got to each other during contest tasks (answer: scarily close in some instances, with particular repeat offenders!). You may want to repeat that analysis for other contests (with suitable credit to John).
You could also look at the data to show the usefulness (or not) of pulling up in thermals vs. a block speed-to-fly, however this (and a lot of other analysis) really needs other (accelerometer, airspeed, vario) data to be useful.
Good luck with the project, whatever you choose to do.

DH
TX
  #8  
Old December 14th 18, 05:15 AM posted to rec.aviation.soaring
Thomas Van de Velde
external usenet poster
 
Posts: 18
Default Igc file help. Computer science

On Wednesday, October 31, 2018 at 10:59:48 AM UTC-7, wrote:
Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!


You may want to take a look at the following Python module: https://pypi.org/project/xcsoar/

I've used it to generate this:
https://goo.gl/miiVrq
  #9  
Old December 14th 18, 03:33 PM posted to rec.aviation.soaring
Dan Marotta
external usenet poster
 
Posts: 4,601
Default Igc file help. Computer science

Pretty impressive looking!Â* Does each red dot indicate the location of a
thermal or a forecast of the likelihood of a thermal being there (or
thereabouts)?Â* Given the subject of "igc file", I would assume it's post
flight but then I'd have to ask again:Â* exactly what is each red dot?

On 12/13/2018 10:15 PM, Thomas Van de Velde wrote:
On Wednesday, October 31, 2018 at 10:59:48 AM UTC-7, wrote:
Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!

You may want to take a look at the following Python module: https://pypi.org/project/xcsoar/

I've used it to generate this:
https://goo.gl/miiVrq


--
Dan, 5J
  #10  
Old December 14th 18, 05:23 PM posted to rec.aviation.soaring
Thomas Van de Velde
external usenet poster
 
Posts: 18
Default Igc file help. Computer science

Each dot is a historical thermal. You can click on a dot and get additional details about the pilot, time, altitude gain, thermal strength, etc for that particular thermal. The filters on the right interact with the map so if you zoom in on an area you'll see who flew there from where and when. You can also use those filters to slice and dice the data in many different ways; e.g. all flights from a particular airport at a particular time or month of the year, etc.

On Friday, December 14, 2018 at 7:33:18 AM UTC-8, Dan Marotta wrote:
Pretty impressive looking!Â* Does each red dot indicate the location of a
thermal or a forecast of the likelihood of a thermal being there (or
thereabouts)?Â* Given the subject of "igc file", I would assume it's post
flight but then I'd have to ask again:Â* exactly what is each red dot?

On 12/13/2018 10:15 PM, Thomas Van de Velde wrote:
On Wednesday, October 31, 2018 at 10:59:48 AM UTC-7, wrote:
Hey guys im taking a computer science class on data structures and algorithms. I wanna do something glider related for my final project. I was thinking about trying to see if there is a pattern between average vario for a task and Xc speed. However, I have no clue how how to obtain such data from an igc file. Also,any suggestion On maybe doing something different for the project are welcome.

Thanks!

You may want to take a look at the following Python module: https://pypi.org/project/xcsoar/

I've used it to generate this:
https://goo.gl/miiVrq


--
Dan, 5J


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Science Qs Greg Farr Aviation Photos 4 April 3rd 08 08:16 AM
Science et vie 01 Patrick R7 Aviation Photos 17 October 19th 07 09:57 AM
Mixture--science vs witchcraft? Douglas Paterson Owning 34 August 28th 07 10:25 PM
TSA Rocket Science Judah Piloting 11 January 14th 04 11:59 PM


All times are GMT +1. The time now is 08:19 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 AviationBanter.
The comments are property of their posters.