download_asf_rsmas.py and download_ssara_rsmas.py currently use a modified command line argument parsing scheme that does not rely on the python argparse library. Compared with the rest of the codebase which uses argparse, this can be confusing to edit/update, especially in the event that new command line argument need to be passed to the function.
Should be updated so as to use argparse and position arguments rather than sys.argv[1]
download_asf_rsmas.py
anddownload_ssara_rsmas.py
currently use a modified command line argument parsing scheme that does not rely on the pythonargparse
library. Compared with the rest of the codebase which uses argparse, this can be confusing to edit/update, especially in the event that new command line argument need to be passed to the function.Should be updated so as to use argparse and position arguments rather than
sys.argv[1]