Skip to content

aeromaps.core.cli

Main

Main()

Class for managing command line and doing associated actions

Examples:

In a terminal, run the following command to download the tutorial notebooks:

>>> aeromaps notebooks

In a terminal, run the following command to launch a local graphical user interface:

>>> aeromaps gui
Source code in aeromaps/core/cli.py
30
31
32
33
34
35
36
def __init__(self):
    class _CustomFormatter(RawDescriptionHelpFormatter, ArgumentDefaultsHelpFormatter):
        pass

    self.parser = ArgumentParser(
        description="AeroMAPS main program", formatter_class=_CustomFormatter
    )