added default argument in output file argument

This commit is contained in:
Joel Moriana 2020-04-15 16:57:43 +02:00 committed by bernat
parent e7a23ea941
commit 3a36b16378
1 changed files with 6 additions and 1 deletions

View File

@ -506,6 +506,7 @@ def _netconvert_carla_impl(xodr_file, output, tmpdir, guess_tls=False):
tree.write(output, pretty_print=True, encoding='UTF-8', xml_declaration=True) tree.write(output, pretty_print=True, encoding='UTF-8', xml_declaration=True)
def netconvert_carla(xodr_file, output, guess_tls=False): def netconvert_carla(xodr_file, output, guess_tls=False):
""" """
Generates sumo net. Generates sumo net.
@ -527,7 +528,11 @@ def netconvert_carla(xodr_file, output, guess_tls=False):
if __name__ == '__main__': if __name__ == '__main__':
argparser = argparse.ArgumentParser(description=__doc__) argparser = argparse.ArgumentParser(description=__doc__)
argparser.add_argument('xodr_file', help='opendrive file (*.xodr') argparser.add_argument('xodr_file', help='opendrive file (*.xodr')
argparser.add_argument('--output', '-o', type=str, help='output file (*.net.xml)') argparser.add_argument('--output',
'-o',
default='net.net.xml',
type=str,
help='output file (default: net.net.xml)')
argparser.add_argument('--guess-tls', argparser.add_argument('--guess-tls',
action='store_true', action='store_true',
help='guess traffic lights at intersections (default: False)') help='guess traffic lights at intersections (default: False)')