stripmapStack/prepRawALOS: add --dual2single option

Add --dual2single option to resample the FBD acquisitions to FBS mode, to better support regular interferometry. Default is off, so all previous setting won't be affected
LT1AB
Zhang Yunjun 2019-03-18 18:31:50 -04:00
parent 79b5ad3a49
commit 711e67ef30
1 changed files with 10 additions and 2 deletions

View File

@ -27,6 +27,8 @@ def createParser():
help='output directory where data needs to be unpacked into isce format (for script generation).') help='output directory where data needs to be unpacked into isce format (for script generation).')
parser.add_argument('-t', '--text_cmd', dest='text_cmd', type=str, default='source ~/.bash_profile;', parser.add_argument('-t', '--text_cmd', dest='text_cmd', type=str, default='source ~/.bash_profile;',
help='text command to be added to the beginning of each line of the run files. Default: source ~/.bash_profile;') help='text command to be added to the beginning of each line of the run files. Default: source ~/.bash_profile;')
parser.add_argument('--dual2single','--fbd2fbs', dest='fbd2fbs', action='store_true',
help='resample the FBD acquisitions to FBS. Recommended for "interferogram" workflow without ionosphere.')
return parser return parser
@ -202,7 +204,13 @@ def main(iargs=None):
os.makedirs(slcDir) os.makedirs(slcDir)
cmd = 'unpackFrame_ALOS_raw.py -i ' + os.path.abspath(dataDir) + ' -o ' + slcDir cmd = 'unpackFrame_ALOS_raw.py -i ' + os.path.abspath(dataDir) + ' -o ' + slcDir
IMG_files = glob.glob(os.path.join(AlosFiles[0],'IMG*')) IMG_files = glob.glob(os.path.join(AlosFiles[0],'IMG*'))
if len(IMG_files)==1: if inps.fbd2fbs:
#recommended for regular interferometry to use all FBS bandwidth
if len(IMG_files) == 2:
cmd += ' -f fbd2fbs '
else:
#used for ionosphere workflow for simplicity
if len(IMG_files) == 1:
cmd = cmd + ' -f fbs2fbd ' cmd = cmd + ' -f fbs2fbd '
if len(AlosFiles) > 1: if len(AlosFiles) > 1:
cmd = cmd + ' -m' cmd = cmd + ' -m'