Allow specifying data path
This commit is contained in:
parent
1ffa4306fe
commit
d0309ca25d
1 changed files with 6 additions and 1 deletions
|
@ -105,7 +105,10 @@ def query_style(args):
|
|||
|
||||
|
||||
def komap_mapswithme(options):
|
||||
ddir = os.path.dirname(options.outfile)
|
||||
if options.data and os.path.isdir(options.data):
|
||||
ddir = options.data
|
||||
else:
|
||||
ddir = os.path.dirname(options.outfile)
|
||||
|
||||
classificator = {}
|
||||
class_order = []
|
||||
|
@ -535,6 +538,8 @@ def main():
|
|||
help="output filename", metavar="FILE")
|
||||
parser.add_option("-x", "--txt", dest="txt", action="store_true",
|
||||
help="create a text file for output", default=False)
|
||||
parser.add_option("-d", "--data-path", dest="data",
|
||||
help="path to mapcss-mapping.csv and other files", metavar="PATH")
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue