Skip to content

Commit

Permalink
Remove ref/sec checks from multiburst
Browse files Browse the repository at this point in the history
  • Loading branch information
williamh890 committed Mar 7, 2025
1 parent 63c0627 commit de48cb3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/hyp3_sdk/hyp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,12 +489,6 @@ def prepare_insar_isce_multi_burst_job(
Returns:
A dictionary containing the prepared InSAR ISCE multi burst job
"""
if len(reference) < 1 or len(secondary) < 1:
raise ValueError('Must include at least 1 reference scene and 1 secondary scene')

if len(reference) != len(secondary):
raise ValueError('Reference and secondary must be the same length')

job_parameters = locals().copy()
for key in ['cls', 'name']:
job_parameters.pop(key)
Expand Down

0 comments on commit de48cb3

Please sign in to comment.