Skip to content

Commit

Permalink
Make sequential stitcher the default
Browse files Browse the repository at this point in the history
  • Loading branch information
Simran S Sangha committed Aug 9, 2023
1 parent 489befb commit b8bf043
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/ARIAtools/extractProduct.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def createParser():
help='Amplitude threshold below which to mask. Specify "None" to not use amplitude mask. By default "None".')
parser.add_argument('-nt', '--num_threads', dest='num_threads', default='2', type=str,
help='Specify number of threads for multiprocessing operation in gdal. By default "2". Can also specify "All" to use all available threads.')
parser.add_argument('-sm', '--stitchMethod', dest='stitchMethodType', type=str, default='overlap',
parser.add_argument('-sm', '--stitchMethod', dest='stitchMethodType', type=str, default='sequential',
help="Method applied to stitch the unwrapped data. Allowed methods are: 'overlap', '2stage', and 'sequential'. 'overlap' - product overlap is minimized, '2stage' - minimization is done on connected components, 'sequential' - sequential minimization of all overlapping connected components. Default is 'overlap'.")
parser.add_argument('-of', '--outputFormat', dest='outputFormat', type=str, default='VRT',
help='GDAL compatible output format (e.g., "ENVI", "GTiff"). By default files are generated virtually except for "bPerpendicular", "bParallel", "incidenceAngle", "lookAngle","azimuthAngle", "unwrappedPhase" as these are require either DEM intersection or corrections to be applied')
Expand Down
2 changes: 1 addition & 1 deletion tools/ARIAtools/tsSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def create_parser():
'By default "2". Can also specify "All" to use all '
'available threads.')
parser.add_argument('-sm', '--stitchMethod', dest='stitchMethodType',
type=str, default='overlap', help='Method applied to '
type=str, default='sequential', help='Method applied to '
'stitch the unwrapped data. Allowed methods are: '
'"overlap", "2stage", and "sequential". "overlap" - '
'product overlap is minimized, "2stage" - '
Expand Down

0 comments on commit b8bf043

Please sign in to comment.