Changes between Version 2 and Version 3 of Fs1.2.13
- Timestamp:
- May 29, 2009, 2:18:59 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Fs1.2.13
v2 v3 6 6 7 7 8 Will try to list some of the new features here .8 Will try to list some of the new features here: 9 9 10 * New "map" display oftasks 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 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. Ie no longer needed to open FsFlight to see tracklogs in a comp. 14 * Click on a pilot in the "Task participants" list and see the tracklog in the map window. 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 ...). 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. 19 20 * Airspace: still todo: handle shapes other than polygons. 15 21 16 22 * Now reads both GpsDump kml files and IGC files. … … 19 25 20 26 * Note: filenames must end with "[pilot no].kml" or "[pilot no].igc" (case does not matter). This is (some of) the actual code: 21 ` 22 . 27 {{{ 23 28 string[] track_file_parts = tracklog_filename.Split(new char[] { '.' }, StringSplitOptions.None); 24 29 string comp_pilot_id = track_file_parts[track_file_parts.Length - 2]; … … 26 31 if (int.TryParse(comp_pilot_id, out id)) return id.ToString(); 27 32 else return ""; 28 ` 33 }}} 29 34 So "5.kml", "0005.kml" and "Hans.0005.kml" works. "Hans0005.kml" would not work.