Skip to content

Commit 71d2e24

Browse files
committed
add week no
1 parent 2b85716 commit 71d2e24

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

TMsStrava.pm

+2-1
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ sub convertActivityHashToExcel {
584584
type
585585
x_gear_name
586586
start_date_local
587+
x_week
587588
x_start_h
588589
name
589590
x_min
@@ -962,7 +963,7 @@ sub htmlPrintHeader {
962963
# ,-author=>'Torben Menke' # generates mailto:
963964
,
964965
-style => { -src => [ '/style.css', './style-strava.css' ] }
965-
# -style => { -src => './style-strava.css' }
966+
# -style => { -src => './style-strava.css' }
966967
);
967968
# CGI.pm doesn't support HTML5 DTD; replace the one it puts in.
968969
$html =~ s{<!DOCTYPE.*?>}{<!DOCTYPE html>}s;

activityListCaching.pl

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343

4444
# use local::lib;
4545
use JSON::Create 'create_json';
46+
use Date::WeekNumber qw/ cpan_week_number /;
4647
# use JSON::Create;
4748
# use CGI::ProgressBar qw/:standard/;
4849

@@ -334,6 +335,7 @@ sub fetchActivityListYear {
334335
# 2018-10-02T08:10:49Z
335336
$h{"x_start_h"} = sprintf "%.1f", $4 + $5 / 60 + $6 / 3600;
336337
$h{"x_date"} = "$1-$2-$3";
338+
$h{"x_week"} = cpan_week_number( $h{"x_date"} );
337339
} ## end if ( $h{"start_date_local"...})
338340
if ( $h{"average_speed"} and $h{"average_speed"} > 0 ) {
339341
$h{"x_min/km"} = sprintf "%.2f", 1 / $h{"average_speed"} / 60

0 commit comments

Comments
 (0)