Change scale argument to OSM zoom level.

Use OSM zoom level as specification of the map scale.
This commit is contained in:
Sergey Vartanov 2020-09-19 03:33:25 +03:00
parent 9e14093854
commit 54b88f05d2
3 changed files with 37 additions and 47 deletions

View file

@ -38,7 +38,8 @@ def parse_options(args):
parser.add_argument(
"-s", "--scale",
metavar="<float>",
help="map scale",
help="OSM zoom level (may not be integer, default is 18)",
default=18,
dest="scale",
type=float,
required=True)