Skip to content

Commit

Permalink
add general exception for get_sv
Browse files Browse the repository at this point in the history
  • Loading branch information
jlmaurer committed Sep 20, 2023
1 parent d1526b3 commit 3d950dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/RAiDER/cli/raider.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ def calcDelays(iargs=None):
):

###########################################################
# weather model calculation
# Weather model calculation
###########################################################
logger.debug('Starting to run the weather model calculation')
logger.debug(f'Requested date,time: {t.strftime("%Y%m%d, %H:%M")}')
logger.debug('Beginning weather model pre-processing')
Expand Down
3 changes: 3 additions & 0 deletions tools/RAiDER/losreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,9 @@ def filter_ESA_orbit_file_p(path: str) -> bool:
raise ValueError(
'get_sv: I cannot parse the statevector file {}'.format(los_file)
)
except:
raise ValueError('get_sv: I cannot parse the statevector file {}'.format(los_file))


if ref_time:
idx = cut_times(svs[0], ref_time, pad=pad)
Expand Down

0 comments on commit 3d950dd

Please sign in to comment.