forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bring back See You support (GPSBabel#1280)
I think someone was waiting for me to say no. Sometimes, "good enough" (for users with no representation here...) seems to be. Co-authored-by: Robert Lipe <[email protected]>
- Loading branch information
Showing
8 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# | ||
# (c) 2006, Robert Lipe, based on sample files by Krzysztof Wojtas | ||
# Reference info: http://www.seeyou.ws/thankyou.php?fname=cup_format.pdf | ||
# Reference info: http://download.naviter.com/docs/cup_format.pdf | ||
# Reference info: http://www.keepitsoaring.com/LKSC/Downloads/cup_format.pdf | ||
# | ||
|
||
DESCRIPTION See You flight analysis data | ||
SHORTLEN 8 | ||
EXTENSION cup | ||
# | ||
# | ||
# FILE LAYOUT DEFINITIIONS: | ||
# | ||
FIELD_DELIMITER COMMA | ||
RECORD_DELIMITER NEWLINE | ||
BADCHARS ," | ||
PROLOGUE name,code,country,lat,lon,elev,style,rwdir,rwlen,freq,desc | ||
EPILOGUE -----Related Tasks----- | ||
|
||
|
||
IFIELD IGNORE,"", ""%s"" | ||
IFIELD SHORTNAME,"", "%s" | ||
IFIELD CONSTANT,"", "" | ||
IFIELD LAT_DDMMDIR, "%f", "%08.3f", "absolute" | ||
IFIELD LON_DDMMDIR, "%f", "%09.3f", "absolute" | ||
IFIELD ALT_METERS,"", "%dm" | ||
IFIELD CONSTANT,"", "1" | ||
IFIELD CONSTANT,"", "" | ||
IFIELD CONSTANT,"", "" | ||
IFIELD CONSTANT,"", "" | ||
IFIELD DESCRIPTION,"", ""%s"" | ||
|
||
OFIELD SHORTNAME,"", ""%s"" | ||
OFIELD SHORTNAME,"", "%s" | ||
OFIELD CONSTANT,"", "" | ||
OFIELD LAT_DDMMDIR, "", "%08.3f%c" | ||
OFIELD LON_DDMMDIR, "", "%09.3f%c" | ||
OFIELD ALT_METERS,"", "%3.1fm" | ||
OFIELD CONSTANT,"", "1" | ||
OFIELD CONSTANT,"", "" | ||
OFIELD CONSTANT,"", "" | ||
OFIELD CONSTANT,"", "" | ||
OFIELD DESCRIPTION,"", ""%s"" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<para> | ||
This format supports flight analysis data from the | ||
<link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://naviter.com/seeyou-makes-you-a-better-pilot/">See You</link> | ||
program. | ||
</para> | ||
<para> | ||
Position information is preserved, but the aviation-specific | ||
information such as runway length and airport frequency, are | ||
written as blanks and ignored on read. | ||
</para> | ||
<para> | ||
Tasks are not supported. | ||
</para> | ||
|