-
Notifications
You must be signed in to change notification settings - Fork 298
Open
Description
I am creating my stack and I pass a parameter for bbox, but when ISCE is running it creates the stack for all the common area. This is kinda problematic for me becuse it is taking way too much time to run for areas that I don't need and when creating the time series, Mintpy focus in the areas outside the area I am interested in. Is there a way to force ISCE to ignore the areas outside the box?
This is the code that I am using:
#Folders
home_dir="/media/poboy/LaCie/04Scripts/scriptsISCE"
data_dir="/media/poboy/LaCie/03Shreveport/Data"
process_dir="/media/poboy/LaCie/03Shreveport/stackNorth136_south"
aux_dir="/media/poboy/LaCie/orbits/Sentinel/AUX"
orbits_dir="/media/poboy/LaCie/orbits/Sentinel/Orbits"
os.chdir(data_dir)
print("----------------")
print("Current folder " + os.getcwd())
print("----------------")
#parameters stack
slc_dir="SLC136_south"
dem="DEM_STRM/demLat_N30_N34_Lon_W096_W091.dem.wgs84" #STRM dem
referenceDate="20161028"
unwMethod="snaphu"
workflow="interferogram"
bbox= "'31 32.58 -95 -93'"
# %%
os.chdir(data_dir)
print("----------------")
print("Current folder " + os.getcwd())
print("----------------")
# %%
###########################################
############# STACK COMMAND ###############
###########################################
# With bbox
os.system("stackSentinel.py --slc_directory " + slc_dir + " --orbit_directory " + orbits_dir + " --aux_directory " + aux_dir + " --working_directory " + process_dir + " --dem "+ dem +" --reference_date " + referenceDate +" --num_connections 5 --swath_num '1 2 3' --bbox " + bbox + " --coregistration geometry --workflow " + workflow + " --unw_method " + unwMethod + " --azimuth_looks 5 --range_looks 15")
Metadata
Metadata
Assignees
Labels
No labels