From: Brian E. L. <br...@us...> - 2004-08-23 18:23:57
|
Update of /cvsroot/rideplot/rideplot/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18084 Modified Files: rideplot Log Message: Updated rideplot help dialogue and renamed photo-dir option to match other options. Index: rideplot =================================================================== RCS file: /cvsroot/rideplot/rideplot/src/rideplot,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** rideplot 22 Aug 2004 23:45:23 -0000 1.8 --- rideplot 23 Aug 2004 18:23:45 -0000 1.9 *************** *** 68,72 **** $photo_dir @photos @mapped_photos $photo_idx ); - $debug = 1; # convert degrees/min/sec to decimal degrees. --- 68,71 ---- *************** *** 271,274 **** --- 270,275 ---- # Syncronizes photos based upon prevtime and current timestr + # Accesses photo data based upon global information. + sub sync_photos { *************** *** 347,351 **** # handle command-line parameters ! $debug = 1; $use_color = 99; # Unset color variable $data_format = "gpstrans"; # gpstrans gd2 gardown gd2d --- 348,352 ---- # handle command-line parameters ! $debug = 0; $use_color = 99; # Unset color variable $data_format = "gpstrans"; # gpstrans gd2 gardown gd2d *************** *** 373,377 **** "waypoint-fill" => \$waypoint_fill, "waypoint-name" => \$waypoint_name, # Print the Waypoints name. ! "photo_dir=s" => \$photo_dir, # Directory containing photos during tracking "help" => sub { pod2usage({ -message => "\t\tRide Plot\n\t\t---------\n" , -exitval => 1 }); } , ); --- 374,378 ---- "waypoint-fill" => \$waypoint_fill, "waypoint-name" => \$waypoint_name, # Print the Waypoints name. ! "photo-dir=s" => \$photo_dir, # Directory containing photos during tracking "help" => sub { pod2usage({ -message => "\t\tRide Plot\n\t\t---------\n" , -exitval => 1 }); } , ); *************** *** 1017,1021 **** [ C<--max-width=int> ] [ C<--speed-cutoff=int> ] [ C<--brush-width=str> ] [ C<--brush-color=str> ] [ C<--waypoint-file=str> ] [ C<--waypoint-width=int> ] [ C<--waypoint-fill> ] [ C<--waypoint-name> ] ! [ C<--waypoint-merge> ] [ C<--help> ] [ C<--map-get=str>] [ C<--map-file=str>] =head1 DESCRIPTION --- 1018,1022 ---- [ C<--max-width=int> ] [ C<--speed-cutoff=int> ] [ C<--brush-width=str> ] [ C<--brush-color=str> ] [ C<--waypoint-file=str> ] [ C<--waypoint-width=int> ] [ C<--waypoint-fill> ] [ C<--waypoint-name> ] ! [ C<--waypoint-merge> ] [ C<--help> ] [ C<--map-get=str>] [ C<--map-file=str>] [ C<--photo-dir=str>] =head1 DESCRIPTION *************** *** 1141,1144 **** --- 1142,1150 ---- empty circles. + =item C<--photo-dir=str> + + Examines photos in this directory to determine if they were taken during the + tracklog data collection and plots a blue dot where each photo was taken + =item C<--help> |