Bug fix to set a valid default value for the right edge.
Courtesy of report by Brendan Black.
This commit is contained in:
parent
6589c71f62
commit
b0e157dd88
1 changed files with 1 additions and 1 deletions
|
@ -733,7 +733,7 @@ def parseCommandLine():
|
||||||
|
|
||||||
parser.add_argument("--left", dest="left", type=int, default=-180, help="""\
|
parser.add_argument("--left", dest="left", type=int, default=-180, help="""\
|
||||||
minimum longitude to include in download [default: %(default)d]""")
|
minimum longitude to include in download [default: %(default)d]""")
|
||||||
parser.add_argument("--right", dest="right", type=int, default=180,
|
parser.add_argument("--right", dest="right", type=int, default=179,
|
||||||
help="""\
|
help="""\
|
||||||
maximum longitude to include in download [default: %(default)d]""")
|
maximum longitude to include in download [default: %(default)d]""")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue