Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions GEOSldas_App/ldas.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,8 @@ def __init__(self, cmdLineArgs):
if 'MAPL_' in os.path.basename(f):
txt_tile = [f]
break
nc4_tmp = glob.glob(inpgeom_ + '*.nc4' + domain_)
nc4_tile = [ item_ for item_ in nc4_tmp if 'tile2pfaf' not in item_ ]
nc4_tile = glob.glob(inpgeom_ + '*.nc4' + domain_)
if tile_file_format.upper() == 'TXT' : self.ExeInputs['TILING_FILE'] = txt_tile[0]
if tile_file_format.upper() == 'DEFAULT' : self.ExeInputs['TILING_FILE'] = (txt_tile+nc4_tile)[-1]
Expand Down
Loading