diff options
author | chris <chris> | 2006-09-19 15:39:36 +0000 |
---|---|---|
committer | chris <chris> | 2006-09-19 15:39:36 +0000 |
commit | 54ea5ac783bdd900ea29a4d3ab4567fb54576ad7 (patch) | |
tree | 19cb96e8c75ad06f21bdac41785597d985ee5d0a | |
parent | a208a5d46e3305d5e0b088e3408421e72b2e981c (diff) |
Actually print the area of interest before beginning.
-rwxr-xr-x | maketiles/10kfull | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/maketiles/10kfull b/maketiles/10kfull index 96c3a4a0a..2500934e1 100755 --- a/maketiles/10kfull +++ b/maketiles/10kfull @@ -8,7 +8,7 @@ # Email: chris@mysociety.org; WWW: http://www.mysociety.org/ # -my $rcsid = ''; $rcsid .= '$Id: 10kfull,v 1.2 2006-09-19 15:36:57 chris Exp $'; +my $rcsid = ''; $rcsid .= '$Id: 10kfull,v 1.3 2006-09-19 15:39:36 chris Exp $'; use strict; @@ -58,6 +58,8 @@ if (@ARGV == 6) { ($west, $east, $south, $north) = @ARGV[2 .. 5]; die "EAST must be greater than WEST" unless ($east > $west); die "NORTH must be greater than SOUTH" unless ($north > $south); + + debug("area of interest: west $west, east $east, south $south, north $north"); } # |