Merge pull request #24 from mapsme/datapath

Allow specifying data path
This commit is contained in:
Roman Kuznetsov 2017-02-07 11:46:11 +03:00 committed by GitHub
commit cb9d19f210

View file

@ -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 = []
@ -538,6 +541,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()