Changes between Version 7 and Version 8 of Fs1.2.13
- Timestamp:
- May 29, 2009, 2:35:12 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Fs1.2.13
v7 v8 8 8 Will try to list some of the new features here: 9 9 10 * Using FsFlight directly to display tasks and tracklogs. Great when you have two monitors, sometimes annoying when only having one.10 * Using FsFlight directly to display tasks and tracklogs. Great when you have two monitors, sometimes annoying when only having one. 11 11 12 * "Live" view of task as you define it (remember to position the map window so you can see it).12 * "Live" view of task as you define it (remember to position the map window so you can see it). 13 13 14 * Click on a pilot in the "Task participants" list and see the tracklog in the map window.14 * Click on a pilot in the "Task participants" list and see the tracklog in the map window. 15 15 16 * Right-click on a tracklog file in the Tracklogs list and you can focus on the tracklog or open it (.kml files might be opened in Google Earth if installed, .igc in your std. text editor or whatnot ...).16 * Right-click on a tracklog file in the Tracklogs list and you can focus on the tracklog or open it (.kml files might be opened in Google Earth if installed, .igc in your std. text editor or whatnot ...). 17 17 18 * Improved check of airspace violations: Tools > Check tracklogs vs Airspaces will place a * in front of each tracklog where baro of gps altitude breach the limits.18 * Improved check of airspace violations: Tools > Check tracklogs vs Airspaces will place a * in front of each tracklog where baro of gps altitude breach the limits. 19 19 20 * Airspace: still todo: handle shapes other than polygons.20 * Airspace: still todo: handle shapes other than polygons. 21 21 22 * Now reads both GpsDump kml files and IGC files.22 * Now reads both GpsDump kml files and IGC files. 23 23 24 * Note: it is not making any attempt at checking the validity of IGC files, it simply grabs all B records (and any HFDTE records to try to work out the times...).24 * Note: it is not making any attempt at checking the validity of IGC files, it simply grabs all B records (and any HFDTE records to try to work out the times...). 25 25 26 * Note: filenames must end with "[pilot no].kml" or "[pilot no].igc" (case does not matter). This is (some of) the actual code:27 {{{26 * Note: filenames must end with "[pilot no].kml" or "[pilot no].igc" (case does not matter). This is (some of) the actual code: 27 {{{ 28 28 string[] track_file_parts = tracklog_filename.Split(new char[] { '.' }, StringSplitOptions.None); 29 29 string comp_pilot_id = track_file_parts[track_file_parts.Length - 2]; … … 31 31 if (int.TryParse(comp_pilot_id, out id)) return id.ToString(); 32 32 else return ""; 33 }}}33 }}} 34 34 So "5.kml", "0005.kml" and "Hans.0005.kml" works. "Hans0005.kml" would not work. 35 35 36 * GAP2008scoring formula.36 * '''GAP2008''' scoring formula. 37 37 A few things: 38 38 * you want a specific Day Quality (DQ) you can get it by setting it directly. Overrides the Nom. settings for dist, time and goal. … … 43 43 * http://www.kkpg.no/pf/NC_Hallingdal_2009.20090510-2025(not_WPRS).zip 44 44 45 * PWC2009scoring formula45 * '''PWC2009''' scoring formula 46 46 47 47 Note: not as simple as prev. PWC formulas since it use GAP2008 in the bottom and there is lot of parameters that can be tweaked. It is not specified in the PWC2009 rules what the GAP params should be.[[BR]]