Fix Date Parsing Bug
Previously if the directory of the downloaded files had an underscore the date would incorrectly parsed.LT1AB
parent
31bb73ba95
commit
018f2ad842
|
|
@ -72,7 +72,7 @@ def main(iargs=None):
|
||||||
#######################################
|
#######################################
|
||||||
slc_files = glob.glob(os.path.join(inps.input, '*_s'+inps.segment+'_1x1.slc'))
|
slc_files = glob.glob(os.path.join(inps.input, '*_s'+inps.segment+'_1x1.slc'))
|
||||||
for file in slc_files:
|
for file in slc_files:
|
||||||
imgDate = get_Date(file)
|
imgDate = get_Date(os.path.basename(file))
|
||||||
print (imgDate)
|
print (imgDate)
|
||||||
annFile = file.replace('_s'+inps.segment+'_1x1.slc','')+'.ann'
|
annFile = file.replace('_s'+inps.segment+'_1x1.slc','')+'.ann'
|
||||||
print (annFile)
|
print (annFile)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue