1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
|
internal rw---- xcsv ? Character Separated Values xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html
option xcsv style Full path to XCSV style file file https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_style
option xcsv snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snlen
option xcsv snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snwhite
option xcsv snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snupper
option xcsv snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_snunique
option xcsv urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_urlbase
option xcsv prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_prefer_shortnames
option xcsv datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xcsv.html#fmt_xcsv_o_datum
file --rw-- alantrl trl Alan Map500 tracklogs (.trl) alantrl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_alantrl.html
file rw--rw alanwpr wpr Alan Map500 waypoints and routes (.wpr) alanwpr
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_alanwpr.html
internal rw---- tabsep All database fields on one tab-separated line xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html
option tabsep snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snlen
option tabsep snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snwhite
option tabsep snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snupper
option tabsep snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_snunique
option tabsep urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_urlbase
option tabsep prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_prefer_shortnames
option tabsep datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tabsep.html#fmt_tabsep_o_datum
serial --r--- baroiq Brauniger IQ Series Barograph Download baroiq
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_baroiq.html
file --rw-- bushnell_trl trl Bushnell GPS Trail file bushnell_trl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bushnell_trl.html
file rw---- bushnell wpt Bushnell GPS Waypoint file bushnell
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bushnell.html
file rw---- cambridge dat Cambridge/Winpilot glider software xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html
option cambridge snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snlen
option cambridge snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snwhite
option cambridge snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snupper
option cambridge snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_snunique
option cambridge urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_urlbase
option cambridge prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_prefer_shortnames
option cambridge datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cambridge.html#fmt_cambridge_o_datum
file r-r-r- cst cst CarteSurTable data file cst
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cst.html
file r-r--- v900 Columbus/Visiontac V900 files (.csv) v900
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_v900.html
file rw---- csv Comma separated values xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html
option csv snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snlen
option csv snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snwhite
option csv snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snupper
option csv snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_snunique
option csv urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_urlbase
option csv prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_prefer_shortnames
option csv datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_csv.html#fmt_csv_o_datum
file rwrwrw compegps CompeGPS data files (.wpt/.trk/.rte) compegps
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html
option compegps deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_deficon
option compegps index Index of route/track to write (if more than one in source) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_index
option compegps radius Give points (waypoints/route points) a default radius (proximity) float 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_radius
option compegps snlen Length of generated shortnames (default 16) integer 16 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_compegps.html#fmt_compegps_o_snlen
internal rw---- custom Custom "Everything" Style xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html
option custom snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snlen
option custom snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snwhite
option custom snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snupper
option custom snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_snunique
option custom urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_urlbase
option custom prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_prefer_shortnames
option custom datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_custom.html#fmt_custom_o_datum
file --rw-- iblue747 csv Data Logger iBlue747 csv xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html
option iblue747 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snlen
option iblue747 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snwhite
option iblue747 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snupper
option iblue747 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_snunique
option iblue747 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_urlbase
option iblue747 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_prefer_shortnames
option iblue747 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue747.html#fmt_iblue747_o_datum
file --rw-- iblue757 csv Data Logger iBlue757 csv xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html
option iblue757 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snlen
option iblue757 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snwhite
option iblue757 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snupper
option iblue757 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_snunique
option iblue757 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_urlbase
option iblue757 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_prefer_shortnames
option iblue757 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_iblue757.html#fmt_iblue757_o_datum
file rw-wrw an1 an1 DeLorme .an1 (drawing) file an1
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html
option an1 type Type of .an1 file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_type
option an1 road Road type changes string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_road
option an1 nogc Do not add geocache data to description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_nogc
option an1 nourl Do not add URLs to description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_nourl
option an1 deficon Symbol to use for point data string Red Flag https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_deficon
option an1 color Color for lines or mapnotes string red https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_color
option an1 zoom Zoom level to reduce points integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_zoom
option an1 wpt_type Waypoint type string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_wpt_type
option an1 radius Radius for circles string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_an1.html#fmt_an1_o_radius
file --rw-- gpl gpl DeLorme GPL gpl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpl.html
file rw---- saplus DeLorme Street Atlas Plus xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html
option saplus snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snlen
option saplus snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snwhite
option saplus snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snupper
option saplus snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_snunique
option saplus urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_urlbase
option saplus prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_prefer_shortnames
option saplus datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saplus.html#fmt_saplus_o_datum
file --r--- saroute anr DeLorme Street Atlas Route saroute
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html
option saroute turns_important Keep turns if simplify filter is used boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_turns_important
option saroute turns_only Only read turns; skip all other points boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_turns_only
option saroute split Split into multiple routes at turns boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_split
option saroute controls Read control points as waypoint/route/none string none https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_controls
option saroute times Synthesize track times boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_saroute.html#fmt_saroute_o_times
file rw---- xmap wpt DeLorme XMap HH Native .WPT xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html
option xmap snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snlen
option xmap snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snwhite
option xmap snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snupper
option xmap snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_snunique
option xmap urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_urlbase
option xmap prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_prefer_shortnames
option xmap datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap.html#fmt_xmap_o_datum
file rw---- xmap2006 txt DeLorme XMap/SAHH 2006 Native .TXT xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html
option xmap2006 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snlen
option xmap2006 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snwhite
option xmap2006 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snupper
option xmap2006 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_snunique
option xmap2006 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_urlbase
option xmap2006 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_prefer_shortnames
option xmap2006 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmap2006.html#fmt_xmap2006_o_datum
file rw---- xmapwpt DeLorme XMat HH Street Atlas USA .WPT (PPC) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html
option xmapwpt snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snlen
option xmapwpt snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snwhite
option xmapwpt snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snupper
option xmapwpt snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_snunique
option xmapwpt urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_urlbase
option xmapwpt prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_prefer_shortnames
option xmapwpt datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xmapwpt.html#fmt_xmapwpt_o_datum
file ----rw destinator_itn dat Destinator Itineraries (.dat) destinator_itn
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_itn.html
file rw---- destinator_poi dat Destinator Points of Interest (.dat) destinator_poi
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_poi.html
file --rw-- destinator_trl dat Destinator TrackLogs (.dat) destinator_trl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_destinator_trl.html
file rw---- easygps loc EasyGPS binary format easygps
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_easygps.html
file rw---- exif jpg Embedded Exif-GPS data (.jpg) exif
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html
option exif filename Set waypoint name to source filename boolean Y https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_filename
option exif frame Time-frame (in seconds) integer 10 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_frame
option exif name Locate waypoint for tagging by this name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_name
option exif overwrite !OVERWRITE! the original file. Default=N boolean N https://www.gpsbabel.org/WEB_DOC_DIR/fmt_exif.html#fmt_exif_o_overwrite
file --r--- energympro cpo Energympro GPS training watch energympro
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_energympro.html
option energympro timezone Time zone ID string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_energympro.html#fmt_energympro_o_timezone
file ----rw enigma ert Enigma binary waypoint file (.ert) enigma
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_enigma.html
file rwrwrw shape shp ESRI shapefile shape
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html
option shape name Source for name field in .dbf string 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html#fmt_shape_o_name
option shape url Source for URL field in .dbf string 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_shape.html#fmt_shape_o_url
file --r--- f90g map F90G Automobile DVR GPS log file f90g
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_f90g.html
file --rwrw igc FAI/IGC Flight Recorder Data Format igc
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igc.html
option igc timeadj (integer sec or 'auto') Barograph to GPS time diff string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igc.html#fmt_igc_o_timeadj
file -wrw-- garmin_fit fit Flexible and Interoperable Data Transfer (FIT) Activity file garmin_fit
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_fit.html
option garmin_fit allpoints Read all points even if latitude or longitude is missing boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_fit.html#fmt_garmin_fit_o_allpoints
option garmin_fit recoverymode Attempt to recovery data from corrupt file boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_fit.html#fmt_garmin_fit_o_recoverymode
file rw---- flysight csv FlySight GPS File xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html
option flysight snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snlen
option flysight snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snwhite
option flysight snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snupper
option flysight snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_snunique
option flysight urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_urlbase
option flysight prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_prefer_shortnames
option flysight datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_flysight.html#fmt_flysight_o_datum
file -w-w-w gpssim gpssim Franson GPSGate Simulation gpssim
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html
option gpssim wayptspd Default speed for waypoints (knots/hr) float https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html#fmt_gpssim_o_wayptspd
option gpssim split Split input into separate files boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpssim.html#fmt_gpssim_o_split
file rw---- fugawi txt Fugawi xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html
option fugawi snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snlen
option fugawi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snwhite
option fugawi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snupper
option fugawi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_snunique
option fugawi urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_urlbase
option fugawi prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_prefer_shortnames
option fugawi datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_fugawi.html#fmt_fugawi_o_datum
file r-r-r- g7towin g7t G7ToWin data files (.g7t) g7towin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_g7towin.html
file rw---- garmin301 Garmin 301 Custom position and heartrate xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html
option garmin301 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snlen
option garmin301 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snwhite
option garmin301 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snupper
option garmin301 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_snunique
option garmin301 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_urlbase
option garmin301 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_prefer_shortnames
option garmin301 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin301.html#fmt_garmin301_o_datum
file --rw-- garmin_g1000 csv Garmin G1000 datalog input filter file xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html
option garmin_g1000 snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snlen
option garmin_g1000 snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snwhite
option garmin_g1000 snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snupper
option garmin_g1000 snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_snunique
option garmin_g1000 urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_urlbase
option garmin_g1000 prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_prefer_shortnames
option garmin_g1000 datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_g1000.html#fmt_garmin_g1000_o_datum
file --rw-- glogbook xml Garmin Logbook XML glogbook
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_glogbook.html
file rwrwrw gdb gdb Garmin MapSource - gdb gdb
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html
option gdb cat Default category on output (1..16) integer 1 16 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_cat
option gdb bitscategory Bitmap of categories integer 1 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_bitscategory
option gdb ver Version of gdb file to generate (1..3) integer 2 1 3 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_ver
option gdb via Drop route points that do not have an equivalent waypoint (hidden points) boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_via
option gdb dropwpt Don't create waypoints for non-user points boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_dropwpt
option gdb roadbook Include major turn points (with description) from calculated route boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gdb.html#fmt_gdb_o_roadbook
file rwrwrw garmin_txt txt Garmin MapSource - txt (tab delimited) garmin_txt
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html
option garmin_txt date Read/Write date format (i.e. yyyy/mm/dd) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_date
option garmin_txt datum GPS datum (def. WGS 84) string WGS 84 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_datum
option garmin_txt dist Distance unit [m=metric, s=statute] string m https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_dist
option garmin_txt grid Write position using this grid. string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_grid
option garmin_txt prec Precision of coordinates integer 3 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_prec
option garmin_txt temp Temperature unit [c=Celsius, f=Fahrenheit] string c https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_temp
option garmin_txt time Read/Write time format (i.e. HH:mm:ss xx) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_time
option garmin_txt utc Write timestamps with offset x to UTC time integer -23 +23 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_txt.html#fmt_garmin_txt_o_utc
file rwrwrw pcx pcx Garmin PCX5 pcx
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html
option pcx deficon Default icon name string Waypoint https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html#fmt_pcx_o_deficon
option pcx cartoexploreur Write tracks compatible with Carto Exploreur boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pcx.html#fmt_pcx_o_cartoexploreur
file rw---- garmin_poi Garmin POI database xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html
option garmin_poi snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snlen
option garmin_poi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snwhite
option garmin_poi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snupper
option garmin_poi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_snunique
option garmin_poi urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_urlbase
option garmin_poi prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_prefer_shortnames
option garmin_poi datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_poi.html#fmt_garmin_poi_o_datum
file rw---- garmin_gpi gpi Garmin Points of Interest (.gpi) garmin_gpi
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html
option garmin_gpi alerts Enable alerts on speed or proximity distance boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_alerts
option garmin_gpi bitmap Use specified bitmap on output file https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_bitmap
option garmin_gpi category Default category on output string My points https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_category
option garmin_gpi hide Don't show gpi bitmap on device boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_hide
option garmin_gpi descr Write description to address field boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_descr
option garmin_gpi notes Write notes to address field boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_notes
option garmin_gpi position Write position to address field boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_position
option garmin_gpi proximity Default proximity string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_proximity
option garmin_gpi sleep After output job done sleep n second(s) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_sleep
option garmin_gpi speed Default speed string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_speed
option garmin_gpi unique Create unique waypoint names (default = yes) boolean Y https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_unique
option garmin_gpi units Units used for names with @speed ('s'tatute or 'm'etric) string m https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_units
option garmin_gpi writecodec codec to use for writing strings string windows-1252 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_writecodec
option garmin_gpi languagecode language code to use for reading dual language files string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_gpi.html#fmt_garmin_gpi_o_languagecode
serial rwrwrw garmin Garmin serial/USB protocol garmin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html
option garmin snlen Length of generated shortnames integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snlen
option garmin snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_snwhite
option garmin deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_deficon
option garmin get_posn Return current position as a waypoint boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_get_posn
option garmin power_off Command unit to power itself down boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_power_off
option garmin erase_t Erase existing courses when writing new ones boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_erase_t
option garmin resettime Sync GPS time to computer time boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_resettime
option garmin category Category number to use for written waypoints integer 1 16 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_category
option garmin bitscategory Bitmap of categories integer 1 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_bitscategory
option garmin baud Speed in bits per second of serial port (baud=9600) integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin.html#fmt_garmin_o_baud
file r-rw-- gtrnctr tcx/crs/hst/xml Garmin Training Center (.tcx/.crs/.hst/.xml) gtrnctr
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html
option gtrnctr course Write course rather than history, default yes boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html#fmt_gtrnctr_o_course
option gtrnctr sport Sport: Biking (deflt), Running, MultiSport, Other string Biking https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtrnctr.html#fmt_gtrnctr_o_sport
file rw---- geo loc Geocaching.com .loc geo
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html
option geo deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html#fmt_geo_o_deficon
option geo nuke_placer Omit Placer name boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geo.html#fmt_geo_o_nuke_placer
file rwrwrw ggv_ovl ovl Geogrid-Viewer ascii overlay file (.ovl) ggv_ovl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_ovl.html
file --r--- ggv_bin ovl Geogrid-Viewer binary overlay file (.ovl) ggv_bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_bin.html
file --rw-- ggv_log log Geogrid-Viewer tracklogs (.log) ggv_log
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ggv_log.html
file rwrwrw geojson json GeoJson geojson
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geojson.html
option geojson compact Compact Output. Default is off. boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geojson.html#fmt_geojson_o_compact
file rw---- geonet txt GEOnet Names Server (GNS) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html
option geonet snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snlen
option geonet snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snwhite
option geonet snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snupper
option geonet snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_snunique
option geonet urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_urlbase
option geonet prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_prefer_shortnames
option geonet datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_geonet.html#fmt_geonet_o_datum
internal r-r--- dg-100-bin GlobalSat DG-100/BT-335 Binary File dg-100-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100-bin.html
option dg-100-bin erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100-bin.html#fmt_dg-100-bin_o_erase
option dg-100-bin erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100-bin.html#fmt_dg-100-bin_o_erase_only
serial r-r--- dg-100 GlobalSat DG-100/BT-335 Download dg-100
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html
option dg-100 erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html#fmt_dg-100_o_erase
option dg-100 erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-100.html#fmt_dg-100_o_erase_only
internal r-r--- dg-200-bin GlobalSat DG-200 Binary File dg-200-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200-bin.html
option dg-200-bin erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200-bin.html#fmt_dg-200-bin_o_erase
option dg-200-bin erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200-bin.html#fmt_dg-200-bin_o_erase_only
serial r-r--- dg-200 GlobalSat DG-200 Download dg-200
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html
option dg-200 erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html#fmt_dg-200_o_erase
option dg-200 erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dg-200.html#fmt_dg-200_o_erase_only
serial --r--- globalsat GlobalSat GH625XT GPS training watch globalsat
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html
option globalsat showlist list tracks boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_showlist
option globalsat track get track integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_track
option globalsat dump-file Dump raw data to this file outfile https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_dump-file
option globalsat input-is-dump-file Dump raw data to this file boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_input-is-dump-file
option globalsat timezone Time zone ID string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_globalsat.html#fmt_globalsat_o_timezone
file --r--- googledir xml Google Directions XML googledir
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_googledir.html
file rwrwrw kml kml Google Earth (Keyhole) Markup Language kml
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html
option kml deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_deficon
option kml lines Export linestrings for tracks and routes boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_lines
option kml points Export placemarks for tracks and routes boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_points
option kml line_width Width of lines, in pixels integer 6 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_line_width
option kml line_color Line color, specified in hex AABBGGRR string 99ffac59 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_line_color
option kml floating Altitudes are absolute and not clamped to ground boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_floating
option kml extrude Draw extrusion line from trackpoint to ground boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_extrude
option kml track Write KML track (default = 0) boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_track
option kml trackdata Include extended data for trackpoints (default = 1) boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_trackdata
option kml trackdirection Indicate direction of travel in track icons (default = 0) boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_trackdirection
option kml units Units used when writing comments ('s'tatute, 'm'etric,' 'n'autical, 'a'viation) string s https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_units
option kml labels Display labels on track and routepoints (default = 1) boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_labels
option kml max_position_points Retain at most this number of position points (0 = unlimited) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_max_position_points
option kml rotate_colors Rotate colors for tracks and routes (default automatic) float 0 360 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_rotate_colors
option kml prec Precision of coordinates, number of decimals integer 6 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_prec
file --rw-- gnav_trl trl Google Navigator Tracklines (.trl) gnav_trl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gnav_trl.html
file --rw-- gopal trk GoPal GPS track log (.trk) gopal
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html
option gopal date Complete date-free tracks with given date (YYYYMMDD). integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_date
option gopal maxspeed The maximum speed (km/h) traveling from waypoint to waypoint. integer 200 1 1000 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_maxspeed
option gopal minspeed The minimum speed (km/h) traveling from waypoint to waypoint. Set >0 to remove duplicate waypoints integer 0 0 999 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_minspeed
option gopal clean Cleanup common errors in trackdata boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gopal.html#fmt_gopal_o_clean
file --rw-- land_air_sea txt GPS Tracking Key Pro text xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html
option land_air_sea snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen
option land_air_sea snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snwhite
option land_air_sea snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snupper
option land_air_sea snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snunique
option land_air_sea urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_urlbase
option land_air_sea prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_prefer_shortnames
option land_air_sea datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_datum
file rwrwrw gtm gtm GPS TrackMaker gtm
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gtm.html
file rw---- arc txt GPSBabel arc filter file xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html
option arc snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snlen
option arc snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snwhite
option arc snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snupper
option arc snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_snunique
option arc urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_urlbase
option arc prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_prefer_shortnames
option arc datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_arc.html#fmt_arc_o_datum
file rw---- gpsdrive GpsDrive Format xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html
option gpsdrive snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snlen
option gpsdrive snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snwhite
option gpsdrive snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snupper
option gpsdrive snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_snunique
option gpsdrive urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_urlbase
option gpsdrive prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_prefer_shortnames
option gpsdrive datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrive.html#fmt_gpsdrive_o_datum
file rw---- gpsdrivetrack GpsDrive Format for Tracks xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html
option gpsdrivetrack snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snlen
option gpsdrivetrack snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snwhite
option gpsdrivetrack snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snupper
option gpsdrivetrack snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_snunique
option gpsdrivetrack urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_urlbase
option gpsdrivetrack prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_prefer_shortnames
option gpsdrivetrack datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsdrivetrack.html#fmt_gpsdrivetrack_o_datum
file rw---- gpsman GPSman xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html
option gpsman snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snlen
option gpsman snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snwhite
option gpsman snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snupper
option gpsman snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_snunique
option gpsman urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_urlbase
option gpsman prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_prefer_shortnames
option gpsman datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsman.html#fmt_gpsman_o_datum
file rw---- gpsutil gpsutil gpsutil
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpsutil.html
file rwrwrw gpx gpx GPX XML gpx
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html
option gpx snlen Length of generated shortnames integer 32 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_snlen
option gpx suppresswhite No whitespace in generated shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_suppresswhite
option gpx logpoint Create waypoints from geocache log entries boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_logpoint
option gpx urlbase Base URL for link tag in output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_urlbase
option gpx gpxver Target GPX version for output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_gpxver
option gpx humminbirdextensions Add info (depth) as Humminbird extension boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_humminbirdextensions
option gpx garminextensions Add info (depth) as Garmin extension boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_garminextensions
option gpx elevprec Precision of elevations, number of decimals integer 3 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_gpx.html#fmt_gpx_o_elevprec
file rwrw-- hiketech gps HikeTech hiketech
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_hiketech.html
file rw---- holux wpo Holux (gm-100) .wpo Format holux
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_holux.html
file r-r--- m241-bin bin Holux M-241 (MTK based) Binary File Format m241-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241-bin.html
option m241-bin csv MTK compatible CSV output file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241-bin.html#fmt_m241-bin_o_csv
serial --r--- m241 Holux M-241 (MTK based) download m241
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html
option m241 erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_erase
option m241 erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_erase_only
option m241 log_enable Enable logging after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_log_enable
option m241 csv MTK compatible CSV output file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_csv
option m241 block_size_kb Size of blocks in KB to request from device integer 1 1 64 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_m241.html#fmt_m241_o_block_size_kb
file --r--- vpl Honda/Acura Navigation System VP Log File Format vpl
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vpl.html
file -w---- html html HTML Output html
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html
option html stylesheet Path to HTML style sheet string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_stylesheet
option html encrypt Encrypt hints using ROT13 boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_encrypt
option html logs Include groundspeak logs if present boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_logs
option html degformat Degrees output as 'ddd', 'dmm'(default) or 'dms' string dmm https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_degformat
option html altunits Units for altitude (f)eet or (m)etres string m https://www.gpsbabel.org/WEB_DOC_DIR/fmt_html.html#fmt_html_o_altunits
file r-rwr- humminbird_ht ht Humminbird tracks (.ht) humminbird_ht
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_humminbird_ht.html
file rwr-rw humminbird hwr Humminbird waypoints and routes (.hwr) humminbird
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_humminbird.html
file --rw-- ignrando rdn IGN Rando track files ignrando
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ignrando.html
option ignrando index Index of track to write (if more than one in source) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ignrando.html#fmt_ignrando_o_index
file rw---- igoprimo_poi upoi iGo Primo points of interest (.upoi) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html
option igoprimo_poi snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snlen
option igoprimo_poi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snwhite
option igoprimo_poi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snupper
option igoprimo_poi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_snunique
option igoprimo_poi urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_urlbase
option igoprimo_poi prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_prefer_shortnames
option igoprimo_poi datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igoprimo_poi.html#fmt_igoprimo_poi_o_datum
file rw---- igo2008_poi upoi iGO2008 points of interest (.upoi) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html
option igo2008_poi snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snlen
option igo2008_poi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snwhite
option igo2008_poi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snupper
option igo2008_poi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_snunique
option igo2008_poi urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_urlbase
option igo2008_poi prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_prefer_shortnames
option igo2008_poi datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo2008_poi.html#fmt_igo2008_poi_o_datum
file --rw-- igo8 trk IGO8 .trk igo8
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html
option igo8 tracknum Track identification number integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_tracknum
option igo8 title Track title string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_title
option igo8 description Track description string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_igo8.html#fmt_igo8_o_description
internal r-r-r- random Internal GPS data generator random
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html
option random points Generate # points integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_points
option random seed Starting seed of the internal number generator integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_seed
option random nodelay Output realtime points without delay boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_random.html#fmt_random_o_nodelay
file --rw-- jtr jtr Jelbert GeoTagger data file jtr
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_jtr.html
file --r--- jogmap xml Jogmap.de XML format jogmap
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_jogmap.html
file --rw-- kompass_tk wp Kompass (DAV) Track (.tk) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html
option kompass_tk snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snlen
option kompass_tk snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snwhite
option kompass_tk snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snupper
option kompass_tk snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_snunique
option kompass_tk urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_urlbase
option kompass_tk prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_prefer_shortnames
option kompass_tk datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_tk.html#fmt_kompass_tk_o_datum
file rw---- kompass_wp wp Kompass (DAV) Waypoints (.wp) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html
option kompass_wp snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snlen
option kompass_wp snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snwhite
option kompass_wp snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snupper
option kompass_wp snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_snunique
option kompass_wp urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_urlbase
option kompass_wp prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_prefer_shortnames
option kompass_wp datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kompass_wp.html#fmt_kompass_wp_o_datum
file rwrwrw lowranceusr usr Lowrance USR lowranceusr
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html
option lowranceusr ignoreicons (USR input) Ignore event marker icons on read boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_ignoreicons
option lowranceusr writeasicons (USR output) Treat waypoints as icons on write boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_writeasicons
option lowranceusr merge (USR output) Merge into one segmented trail boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_merge
option lowranceusr break (USR input) Break segments into separate trails boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_break
option lowranceusr wversion (USR output) Write version integer 2 2 4 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_wversion
option lowranceusr title (USR output) Output file title string string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_title
option lowranceusr serialnum (USR output) Device serial number integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_serialnum
option lowranceusr description (USR output) Output file content description string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lowranceusr.html#fmt_lowranceusr_o_description
file rw---- maggeo gs Magellan Explorist Geocaching maggeo
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_maggeo.html
file rwrwrw mapsend Magellan Mapsend mapsend
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsend.html
option mapsend trkver MapSend version TRK file to generate (3,4) integer 4 3 4 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapsend.html#fmt_mapsend_o_trkver
file rwrwrw magellanx upt Magellan SD files (as for eXplorist) magellanx
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html
option magellanx deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html#fmt_magellanx_o_deficon
option magellanx maxcmts Max number of comments to write (maxcmts=200) integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellanx.html#fmt_magellanx_o_maxcmts
file rwrwrw magellan Magellan SD files (as for Meridian) magellan
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html
option magellan deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_deficon
option magellan maxcmts Max number of comments to write (maxcmts=200) integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_maxcmts
serial rwrwrw magellan Magellan serial protocol magellan
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html
option magellan deficon Default icon name string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_deficon
option magellan maxcmts Max number of comments to write (maxcmts=200) integer 200 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_maxcmts
option magellan baud Numeric value of bitrate (baud=4800) integer 4800 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_baud
option magellan noack Suppress use of handshaking in name of speed boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_noack
option magellan nukewpt Delete all waypoints boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_magellan.html#fmt_magellan_o_nukewpt
file r-r--- ik3d ikt MagicMaps IK3D project file (.ikt) ik3d
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ik3d.html
file --rw-- mainnav nav Mainnav xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html
option mainnav snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snlen
option mainnav snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snwhite
option mainnav snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snupper
option mainnav snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_snunique
option mainnav urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_urlbase
option mainnav prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_prefer_shortnames
option mainnav datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mainnav.html#fmt_mainnav_o_datum
file ----r- tef xml Map&Guide 'TourExchangeFormat' XML tef
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tef.html
option tef routevia Include only via stations in route boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tef.html#fmt_tef_o_routevia
file --rw-- mapasia_tr7 tr7 MapAsia track file (.tr7) mapasia_tr7
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapasia_tr7.html
file --r--- mapbar trk Mapbar (China) navigation track for Sonim Xp3300 mapbar
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapbar.html
file rw---- mapfactor xml Mapfactor Navigator mapfactor
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapfactor.html
file rw---- mapconverter txt Mapopolis.com Mapconverter CSV xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html
option mapconverter snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snlen
option mapconverter snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snwhite
option mapconverter snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snupper
option mapconverter snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_snunique
option mapconverter urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_urlbase
option mapconverter prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_prefer_shortnames
option mapconverter datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mapconverter.html#fmt_mapconverter_o_datum
file rw---- mxf mxf MapTech Exchange Format xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html
option mxf snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snlen
option mxf snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snwhite
option mxf snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snupper
option mxf snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_snunique
option mxf urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_urlbase
option mxf prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_prefer_shortnames
option mxf datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mxf.html#fmt_mxf_o_datum
file r-r--- mtk_locus MediaTek Locus mtk_locus
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html
option mtk_locus baudrate Speed in bits per second of serial port (autodetect=0) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_baudrate
option mtk_locus download Download logged fixes boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_download
option mtk_locus erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_erase
option mtk_locus status Show device status boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_status
option mtk_locus enable Enable logging after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk_locus.html#fmt_mtk_locus_o_enable
file rwrwrw mmo mmo Memory-Map Navigator overlay files (.mmo) mmo
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html
option mmo locked Write items 'locked' [default no] boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_locked
option mmo visible Write items 'visible' [default yes] boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_visible
option mmo ver Write files with internal version [n] integer 17 18 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mmo.html#fmt_mmo_o_ver
file rw---- s_and_t txt Microsoft Streets and Trips 2002-2007 xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html
option s_and_t snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snlen
option s_and_t snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snwhite
option s_and_t snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snupper
option s_and_t snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_snunique
option s_and_t urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_urlbase
option s_and_t prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_prefer_shortnames
option s_and_t datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_s_and_t.html#fmt_s_and_t_o_datum
serial r-r--- miniHomer MiniHomer, a skyTraq Venus 6 based logger (download tracks, waypoints and get/set POI) miniHomer
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html
option miniHomer baud Baud rate used for download integer 115200 0 115200 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_baud
option miniHomer dump-file Dump raw data to this file outfile https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_dump-file
option miniHomer erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_erase
option miniHomer first-sector First sector to be read from the device integer 0 0 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_first-sector
option miniHomer initbaud Baud rate used to init device (0=autodetect) integer 38400 38400 38400 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_initbaud
option miniHomer last-sector Last sector to be read from the device (-1: smart read everything) integer -1 -1 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_last-sector
option miniHomer no-output Disable output (useful with erase) boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_no-output
option miniHomer read-at-once Number of sectors to read at once (0=use single sector mode) integer 255 0 255 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_read-at-once
option miniHomer Home POI for Home Symbol as lat:lng[:alt] string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Home
option miniHomer Car POI for Car Symbol as lat:lng[:alt] string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Car
option miniHomer Boat POI for Boat Symbol as lat:lng[:alt] string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Boat
option miniHomer Heart POI for Heart Symbol as lat:lng[:alt] string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Heart
option miniHomer Bar POI for Bar Symbol as lat:lng[:alt] string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_Bar
option miniHomer gps-utc-offset Seconds that GPS time tracks UTC (0: best guess) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_gps-utc-offset
option miniHomer gps-week-rollover GPS week rollover period we're in (-1: best guess) integer -1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_miniHomer.html#fmt_miniHomer_o_gps-week-rollover
file --r--- garmin_xt Mobile Garmin XT Track files garmin_xt
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html
option garmin_xt ftype Garmin Mobile XT ([ATRK]/STRK) string ATRK https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html#fmt_garmin_xt_o_ftype
option garmin_xt trk_header Track name processing option ([0]-nrm/1-ign) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_garmin_xt.html#fmt_garmin_xt_o_trk_header
file rw---- motoactv csv Motoactiv CSV xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html
option motoactv snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snlen
option motoactv snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snwhite
option motoactv snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snupper
option motoactv snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_snunique
option motoactv urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_urlbase
option motoactv prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_prefer_shortnames
option motoactv datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_motoactv.html#fmt_motoactv_o_datum
file ----rw bcr bcr Motorrad Routenplaner (Map&Guide) .bcr files bcr
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html
option bcr index Index of route to write (if more than one in source) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_index
option bcr name New name for the route string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_name
option bcr radius Radius of our big earth (default 6371000 meters) float 6371000 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_radius
option bcr prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_bcr.html#fmt_bcr_o_prefer_shortnames
file r-r--- mtk-bin bin MTK Logger (iBlue 747,...) Binary File Format mtk-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk-bin.html
option mtk-bin csv MTK compatible CSV output file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk-bin.html#fmt_mtk-bin_o_csv
serial r-r--- mtk MTK Logger (iBlue 747,Qstarz BT-1000,...) download mtk
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html
option mtk erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_erase
option mtk erase_only Only erase device data, do not download anything boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_erase_only
option mtk log_enable Enable logging after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_log_enable
option mtk csv MTK compatible CSV output file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_csv
option mtk block_size_kb Size of blocks in KB to request from device integer 1 1 64 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mtk.html#fmt_mtk_o_block_size_kb
file --r--- mynav trc MyNav TRC format mynav
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_mynav.html
file rw---- tpg tpg National Geographic Topo .tpg (waypoints) tpg
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpg.html
option tpg datum Datum (default=NAD27) string N. America 1927 mean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpg.html#fmt_tpg_o_datum
file --r--- tpo2 tpo National Geographic Topo 2.x .tpo tpo2
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpo2.html
file r-r-r- tpo3 tpo National Geographic Topo 3.x/4.x .tpo tpo3
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tpo3.html
file r----- navicache Navicache.com XML navicache
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navicache.html
option navicache noretired Suppress retired geocaches boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navicache.html#fmt_navicache_o_noretired
file ----rw nmn4 rte Navigon Mobile Navigator .rte files nmn4
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmn4.html
option nmn4 index Index of route to write (if more than one in source) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmn4.html#fmt_nmn4_o_index
file rw---- navigonwpt Navigon Waypoints xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html
option navigonwpt snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snlen
option navigonwpt snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snwhite
option navigonwpt snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snupper
option navigonwpt snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_snunique
option navigonwpt urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_urlbase
option navigonwpt prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_prefer_shortnames
option navigonwpt datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navigonwpt.html#fmt_navigonwpt_o_datum
serial rwrwrw navilink NaviGPS GT-11/BGT-11 Download navilink
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html
option navilink nuketrk Delete all track points boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nuketrk
option navilink nukerte Delete all routes boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukerte
option navilink nukewpt Delete all waypoints boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukewpt
option navilink nukedlg Clear the datalog boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_nukedlg
option navilink datalog Read from datalogger buffer boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_datalog
option navilink power_off Command unit to power itself down boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navilink.html#fmt_navilink_o_power_off
file --r--- sbp sbp NaviGPS GT-31/BGT-31 datalogger (.sbp) sbp
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_sbp.html
file --r--- sbn sbn NaviGPS GT-31/BGT-31 SiRF binary logfile (.sbn) sbn
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_sbn.html
file rw---- naviguide twl Naviguide binary route file (.twl) naviguide
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html
option naviguide output 'wp' - Create waypoint file , 'rte' - Create route file string rte https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html#fmt_naviguide_o_output
option naviguide reorder 'n' - Keep the existing wp name, 'y' - rename waypoints string n https://www.gpsbabel.org/WEB_DOC_DIR/fmt_naviguide.html#fmt_naviguide_o_reorder
file --rw-- navitel_trk bin Navitel binary track (.bin) navitel_trk
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_navitel_trk.html
file rw---- dna dna Navitrak DNA marker format xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html
option dna snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snlen
option dna snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snwhite
option dna snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snupper
option dna snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_snunique
option dna urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_urlbase
option dna prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_prefer_shortnames
option dna datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dna.html#fmt_dna_o_datum
file r----- netstumbler NetStumbler Summary File (text) netstumbler
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html
option netstumbler nseicon Non-stealth encrypted icon name string Red Square https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_nseicon
option netstumbler nsneicon Non-stealth non-encrypted icon name string Green Square https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_nsneicon
option netstumbler seicon Stealth encrypted icon name string Red Diamond https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_seicon
option netstumbler sneicon Stealth non-encrypted icon name string Green Diamond https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_sneicon
option netstumbler snmac Shortname is MAC address boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_netstumbler.html#fmt_netstumbler_o_snmac
file rw---- nima NIMA/GNIS Geographic Names File xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html
option nima snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snlen
option nima snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snwhite
option nima snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snupper
option nima snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_snunique
option nima urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_urlbase
option nima prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_prefer_shortnames
option nima datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nima.html#fmt_nima_o_datum
file rwrw-- nmea NMEA 0183 sentences nmea
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html
option nmea snlen Max length of waypoint name to write integer 6 1 64 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_snlen
option nmea gprmc Read/write GPRMC sentences boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gprmc
option nmea gpgga Read/write GPGGA sentences boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpgga
option nmea gpvtg Read/write GPVTG sentences boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpvtg
option nmea gpgsa Read/write GPGSA sentences boolean 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gpgsa
option nmea date Complete date-free tracks with given date (YYYYMMDD). integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_date
option nmea get_posn Return current position as a waypoint boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_get_posn
option nmea pause Decimal seconds to pause between groups of strings integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_pause
option nmea append_positioning Append realtime positioning data to the output file instead of truncating boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_append_positioning
option nmea baud Speed in bits per second of serial port (baud=4800) integer https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_baud
option nmea gisteq Write tracks for Gisteq Phototracker boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_gisteq
option nmea ignore_fix Accept position fixes in gpgga marked invalid boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_nmea.html#fmt_nmea_o_ignore_fix
file rw---- lmx Nokia Landmark Exchange lmx
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lmx.html
option lmx binary Compact binary representation boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_lmx.html#fmt_lmx_o_binary
file rw-wrw osm osm OpenStreetMap data files osm
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html
option osm tag Write additional way tag key/value pairs string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_tag
option osm tagnd Write additional node tag key/value pairs string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_tagnd
option osm created_by Use this value as custom created_by value string GPSBabel https://www.gpsbabel.org/WEB_DOC_DIR/fmt_osm.html#fmt_osm_o_created_by
file rwrwrw ozi OziExplorer ozi
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html
option ozi pack Write all tracks into one file boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_pack
option ozi snlen Max synthesized shortname length integer 32 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snlen
option ozi snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snwhite
option ozi snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snupper
option ozi snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_snunique
option ozi wptfgcolor Waypoint foreground color string black https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptfgcolor
option ozi wptbgcolor Waypoint background color string yellow https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_wptbgcolor
option ozi proximity Proximity distance string 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_proximity
option ozi altunit Unit used in altitude values string feet https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_altunit
option ozi proxunit Unit used in proximity values string miles https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_proxunit
option ozi codec codec to use for reading and writing strings (default windows-1252) string windows-1252 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ozi.html#fmt_ozi_o_codec
file --rw-- pocketfms_bc PocketFMS breadcrumbs pocketfms_bc
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_bc.html
file r---r- pocketfms_fp xml PocketFMS flightplan (.xml) pocketfms_fp
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_fp.html
file rw---- pocketfms_wp txt PocketFMS waypoints (.txt) pocketfms_wp
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_pocketfms_wp.html
file r-r--- qstarz_bl-1000 Qstarz BL-1000 qstarz_bl-1000
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_qstarz_bl-1000.html
file rw--rw raymarine rwf Raymarine Waypoint File (.rwf) raymarine
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_raymarine.html
option raymarine location Default location string My Waypoints https://www.gpsbabel.org/WEB_DOC_DIR/fmt_raymarine.html#fmt_raymarine_o_location
file --rw-- ricoh log Ricoh GPS Log File xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html
option ricoh snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snlen
option ricoh snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snwhite
option ricoh snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snupper
option ricoh snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_snunique
option ricoh urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_urlbase
option ricoh prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_prefer_shortnames
option ricoh datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_ricoh.html#fmt_ricoh_o_datum
file rw---- cup cup See You flight analysis data xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html
option cup snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snlen
option cup snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snwhite
option cup snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snupper
option cup snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_snunique
option cup urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_urlbase
option cup prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_prefer_shortnames
option cup datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_cup.html#fmt_cup_o_datum
file rwrwrw skyforce Skymap / KMD150 ascii files skyforce
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skyforce.html
serial r-r--- skytraq SkyTraq Venus based loggers (download) skytraq
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html
option skytraq erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_erase
option skytraq targetlocation Set location finder target location as lat,lng string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_targetlocation
option skytraq configlog Configure logging parameter as tmin:tmax:dmin:dmax string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_configlog
option skytraq baud Baud rate used for download integer 230400 0 230400 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_baud
option skytraq initbaud Baud rate used to init device (0=autodetect) integer 0 4800 230400 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_initbaud
option skytraq read-at-once Number of sectors to read at once (0=use single sector mode) integer 255 0 255 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_read-at-once
option skytraq first-sector First sector to be read from the device integer 0 0 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_first-sector
option skytraq last-sector Last sector to be read from the device (-1: smart read everything) integer -1 -1 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_last-sector
option skytraq dump-file Dump raw data to this file outfile https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_dump-file
option skytraq no-output Disable output (useful with erase) boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_no-output
option skytraq gps-utc-offset Seconds that GPS time tracks UTC (0: best guess) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_gps-utc-offset
option skytraq gps-week-rollover GPS week rollover period we're in (-1: best guess) integer -1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq.html#fmt_skytraq_o_gps-week-rollover
file r-r--- skytraq-bin bin SkyTraq Venus based loggers Binary File Format skytraq-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html
option skytraq-bin first-sector First sector to be read from the file integer 0 0 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_first-sector
option skytraq-bin last-sector Last sector to be read from the file (-1: read till empty sector) integer -1 -1 65535 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_last-sector
option skytraq-bin gps-utc-offset Seconds that GPS time tracks UTC (0: best guess) integer 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-utc-offset
option skytraq-bin gps-week-rollover GPS week rollover period we're in (-1: best guess) integer -1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_skytraq-bin.html#fmt_skytraq-bin_o_gps-week-rollover
file ---w-- subrip srt SubRip subtitles for video mapping (.srt) subrip
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html
option subrip video_time Video position for which exact GPS time is known (hhmmss[.sss], default is 00:00:00,000) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_video_time
option subrip gps_time GPS time at position video_time (hhmmss[.sss], default is first timestamp of track) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_gps_time
option subrip gps_date GPS date at position video_time (yyyymmdd, default is first timestamp of track) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_gps_date
option subrip format Format for subtitles string %s km/h %e m\n%t %l https://www.gpsbabel.org/WEB_DOC_DIR/fmt_subrip.html#fmt_subrip_o_format
file --rwrw stmsdf sdf Suunto Trek Manager (STM) .sdf files stmsdf
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmsdf.html
option stmsdf index Index of route (if more than one in source) integer 1 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmsdf.html#fmt_stmsdf_o_index
file rwrwrw stmwpp txt Suunto Trek Manager (STM) WaypointPlus files stmwpp
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmwpp.html
option stmwpp index Index of route/track to write (if more than one in source) integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_stmwpp.html#fmt_stmwpp_o_index
file rwrw-- xol xol Swiss Map 25/50/100 (.xol) xol
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_xol.html
file rw---- openoffice Tab delimited fields useful for OpenOffice xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html
option openoffice snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snlen
option openoffice snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snwhite
option openoffice snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snupper
option openoffice snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_snunique
option openoffice urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_urlbase
option openoffice prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_prefer_shortnames
option openoffice datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_openoffice.html#fmt_openoffice_o_datum
file r----- teletype Teletype [ Get Jonathon Johnson to describe teletype
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_teletype.html
file -w---- text txt Textual Output text
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html
option text nosep Suppress separator lines between waypoints boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_nosep
option text encrypt Encrypt hints using ROT13 boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_encrypt
option text logs Include groundspeak logs if present boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_logs
option text degformat Degrees output as 'ddd', 'dmm'(default) or 'dms' string dmm https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_degformat
option text altunits Units for altitude (f)eet or (m)etres string m https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_altunits
option text splitoutput Write each waypoint in a separate file boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_text.html#fmt_text_o_splitoutput
file ----rw tomtom_itn itn TomTom Itineraries (.itn) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html
option tomtom_itn snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snlen
option tomtom_itn snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snwhite
option tomtom_itn snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snupper
option tomtom_itn snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_snunique
option tomtom_itn urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_urlbase
option tomtom_itn prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_prefer_shortnames
option tomtom_itn datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn.html#fmt_tomtom_itn_o_datum
file ----rw tomtom_itn_places itn TomTom Places Itineraries (.itn) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html
option tomtom_itn_places snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snlen
option tomtom_itn_places snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snwhite
option tomtom_itn_places snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snupper
option tomtom_itn_places snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_snunique
option tomtom_itn_places urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_urlbase
option tomtom_itn_places prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_prefer_shortnames
option tomtom_itn_places datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_itn_places.html#fmt_tomtom_itn_places_o_datum
file rw---- tomtom_asc asc TomTom POI file (.asc) xcsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html
option tomtom_asc snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snlen
option tomtom_asc snwhite Allow whitespace synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snwhite
option tomtom_asc snupper UPPERCASE synth. shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snupper
option tomtom_asc snunique Make synth. shortnames unique boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_snunique
option tomtom_asc urlbase Basename prepended to URL on output string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_urlbase
option tomtom_asc prefer_shortnames Use shortname instead of description boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_prefer_shortnames
option tomtom_asc datum GPS datum (def. WGS 84) string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom_asc.html#fmt_tomtom_asc_o_datum
file rw---- tomtom ov2 TomTom POI file (.ov2) tomtom
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tomtom.html
file rw---- tmpro tmpro TopoMapPro Places File tmpro
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tmpro.html
file rwrw-- dmtlog trl TrackLogs digital mapping (.trl) dmtlog
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dmtlog.html
option dmtlog index Index of track (if more than one in source) integer 1 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_dmtlog.html#fmt_dmtlog_o_index
file rw---- tiger U.S. Census Bureau Tiger Mapping Service tiger
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html
option tiger nolabels Suppress labels on generated pins boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_nolabels
option tiger genurl Generate file with lat/lon for centering map outfile https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_genurl
option tiger margin Margin for map. Degrees or percentage float 15% https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_margin
option tiger snlen Max shortname length when used with -s integer 10 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_snlen
option tiger oldthresh Days after which points are considered old integer 14 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_oldthresh
option tiger oldmarker Marker type for old points string redpin https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_oldmarker
option tiger newmarker Marker type for new points string greenpin https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_newmarker
option tiger suppresswhite Suppress whitespace in generated shortnames boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_suppresswhite
option tiger unfoundmarker Marker type for unfound points string bluepin https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_unfoundmarker
option tiger xpixels Width in pixels of map integer 768 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_xpixels
option tiger ypixels Height in pixels of map integer 768 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_ypixels
option tiger iconismarker The icon description is already the marker boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_tiger.html#fmt_tiger_o_iconismarker
file rwrwrw unicsv Universal csv with field structure in first line unicsv
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html
option unicsv datum GPS datum (def. WGS 84) string WGS 84 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_datum
option unicsv grid Write position using this grid. string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_grid
option unicsv utc Write timestamps with offset x to UTC time integer -23 +23 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_utc
option unicsv format Write name(s) of format(s) from input session(s) boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_format
option unicsv filename Write filename(s) from input session(s) boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_filename
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_prec
option unicsv fields Name and order of input fields, separated by '+' string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_fields
option unicsv codec codec to use for reading and writing strings (default UTF-8) string UTF-8 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_unicsv.html#fmt_unicsv_o_codec
file -w---- vcard vcf Vcard Output (for iPod) vcard
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vcard.html
option vcard encrypt Encrypt hints using ROT13 boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vcard.html#fmt_vcard_o_encrypt
file --rw-- vidaone gpb VidaOne GPS for Pocket PC (.gpb) vidaone
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vidaone.html
option vidaone ver Version of VidaOne file to read or write (1 or 2) integer 1 1 2 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vidaone.html#fmt_vidaone_o_ver
file rwrwrw vitosmt smt Vito Navigator II tracks vitosmt
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vitosmt.html
file --r--- vitovtt vtt Vito SmartMap tracks (.vtt) vitovtt
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_vitovtt.html
file r----- wfff xml WiFiFoFum 2.0 for PocketPC XML wfff
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html
option wfff aicicon Infrastructure closed icon name string Red Square https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_aicicon
option wfff aioicon Infrastructure open icon name string Green Square https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_aioicon
option wfff ahcicon Ad-hoc closed icon name string Red Diamond https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_ahcicon
option wfff ahoicon Ad-hoc open icon name string Green Diamond https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_ahoicon
option wfff snmac Shortname is MAC address boolean https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wfff.html#fmt_wfff_o_snmac
file r-r--- wintec_tes tes Wintec TES file wintec_tes
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wintec_tes.html
file --r--- wbt-bin bin Wintec WBT-100/200 Binary File Format wbt-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt-bin.html
serial r-r--- wbt Wintec WBT-100/200 GPS Download wbt
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt.html
option wbt erase Erase device data after download boolean 0 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt.html#fmt_wbt_o_erase
file --r--- wbt-tk1 tk1 Wintec WBT-201/G-Rays 2 Binary File Format wbt-tk1
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_wbt-tk1.html
serial r-r--- itracku XAiOX iTrackU Logger itracku
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html
option itracku backup Appends the input to a backup file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html#fmt_itracku_o_backup
option itracku new Only waypoints that are not the backup file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku.html#fmt_itracku_o_new
file rwrw-- itracku-bin bin XAiOX iTrackU Logger Binary File Format itracku-bin
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html
option itracku-bin backup Appends the input to a backup file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html#fmt_itracku-bin_o_backup
option itracku-bin new Only waypoints that are not the backup file string https://www.gpsbabel.org/WEB_DOC_DIR/fmt_itracku-bin.html#fmt_itracku-bin_o_new
file r----- yahoo Yahoo Geocode API data yahoo
https://www.gpsbabel.org/WEB_DOC_DIR/fmt_yahoo.html
option yahoo addrsep String to separate concatenated address fields (default=", ") string , https://www.gpsbabel.org/WEB_DOC_DIR/fmt_yahoo.html#fmt_yahoo_o_addrsep
|