edgarriba / OpenDroneMap

OpenDroneMap is a tool to postprocess small Unmanned Aerial Vehicle (sUAS), balloon, kite, and street view data to geographic data. With the current update, we are adding the ability to create orthophotos from drone, balloon, and kite imagery which has GPS ephemeris. Forked from qwesda/BundlerTools ( https://github.com/qwesda/BundlerTools )
GNU General Public License v3.0
0 stars 0 forks source link

argparse: use of dict over argparse class #20

Closed dakotabenjamin closed 8 years ago

dakotabenjamin commented 8 years ago

Why do we use a dict of argument keys (i.e. vars(parse.parse_args())rather than the argparse namespace for the arguments? Is there a specific reason?

edgarriba commented 8 years ago

There isn't. I had an issue here when reading the input variables, so this is how I fixed it. Anyways, if you find or know another way to keep as the original feel free to change it.

dakotabenjamin commented 8 years ago

OK I'll look into it.