NAME

Fitdump - Show contents of Garmin .FIT files


SYNOPSIS

  fitdump -show_version=1
  fitdump [-semicircles_to_deg=(0|1)] [-mps_to_kph=(0|1)] [-use_gmtime=(0|1)] [-maybe_chained=(0|1)] [<file> ... ]


DESCRIPTION

Fitdump reads the contents of Garmin .FIT files given on command line (or standard input if no file is specified), and print them in (hopefully) human readable form.

The latest version is obtained via
fitdump-0.06.tar.gz (3KB, 2016-09-11 10:08:03).

It uses a Perl class

Garmin::FIT.

of version 0.23 or later. The main role of this program is to give a sample application of the class.


AUTHOR

Kiyokazu SUTO <suto@ks-and-ks.ne.jp>


DISCLAIMER etc.

This program is distributed with ABSOLUTELY NO WARRANTY.

Anyone can use, modify, and re-distibute this program without any restriction.


CHANGES

0.05 --> 0.06

$maybe_chained
new option. The true value indicates that the input may be a chained FIT file. Default is 0.

fetch_from()
use new method reset(), maybe_chained(), and end_of_chunk() to support chained FIT files.

0.04 --> 0.05

dump_it()
fetch_from()
care the case where there are previously defined callback functions.

0.03 --> 0.04

fetch_from()
follows protocol version 1.2.

0.02 --> 0.03

fetch_from()
should call the method close() when fetch_header() failed.

0.01 --> 0.02

init_it()
removed.

dump_it()
rewrite with new method print_all_fields of Garmin::FIT.

fetch_from()
renamed from fetch_all().

rewrite with new methods of Garmin::FIT.