From: Ian Jackson Date: Sun, 30 Aug 2009 18:16:31 +0000 (+0100) Subject: Show distances in various places X-Git-Tag: 3.4~70 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.db-test.git;a=commitdiff_plain;h=981103caa156882eb0728ffd99f86ca9e29c7887 Show distances in various places --- diff --git a/yarrg/web/routetrade b/yarrg/web/routetrade index ce91b48..7d112b7 100644 --- a/yarrg/web/routetrade +++ b/yarrg/web/routetrade @@ -50,6 +50,7 @@ my $loss_per_league= 1e-7; my @flow_conds; my @query_params; +my %dists; my $sd_condition= sub { my ($bs, $ix) = @_; @@ -161,6 +162,20 @@ my $sth= $dbh->prepare($stmt); $sth->execute(@query_params); my @flows; +my $distquery= $dbh->prepare(" + SELECT dist FROM dists WHERE aiid = ? AND biid = ? + "); +my $distance= sub { + my ($from,$to)= @_; + my $d= $dists{$from}{$to}; + return $d if defined $d; + $distquery->execute($from,$to); + $d = $distquery->fetchrow_array(); + defined $d or die "$from $to ?"; + $dists{$from}{$to}= $d; + return $d; +}; + my @cols= ({ NoSort => 1 }); my $addcols= sub { @@ -190,7 +205,7 @@ $addcols->({ DoReverse => 1, SortColKey => 'MarginSortKey' }, qw( Margin )); $addcols->({ DoReverse => 1 }, - qw( unitprofit MaxQty + qw( unitprofit dist MaxQty MaxCapital MaxProfit )); @@ -263,6 +278,8 @@ foreach my $f (@flows) { $f->{'dst_price'} * (1.0 - $loss_per_league) ** $f->{'dist'} - $f->{'org_price'}; + $dists{'org_id'}{'dst_id'}= $f->{'dist'}; + my @uid= $f->{commodid}; foreach my $od (qw(org dst)) { push @uid, @@ -469,6 +486,7 @@ $addcols->({ Total => 0, DoReverse => 1 }, qw( + % if ($optimise) { @@ -481,6 +499,7 @@ $addcols->({ Total => 0, DoReverse => 1 }, qw( Collect Deliver Profit + Max % if ($optimise) { Planned @@ -497,6 +516,7 @@ $addcols->({ Total => 0, DoReverse => 1 }, qw( Qty Margin Unit +Dist Qty Capital Profit @@ -560,15 +580,15 @@ $addcols->({ Total => 0, DoReverse => 1 }, qw( % foreach my $i (0..$#islandids) { - % } - <%perl> my $age_reported= 0; my %flowlists;
+
% $iquery->execute($islandids[$i]); % my ($islandname) = $iquery->fetchrow_array(); % if (!$i) { -Start at <% $islandname |h %> +Start at <% $islandname |h %> % } else { -Sail to <% $islandname |h %> +Sail to <% $islandname |h %> +- <% $distance->($islandids[$i-1],$islandids[$i]) |h %>leagues