Revision f24076bbf4a4a4af8e90100f344e10fb237e9b3b authored by Zhang Yunjun on 08 November 2022, 07:17:03 UTC, committed by GitHub on 08 November 2022, 07:17:03 UTC
+ .circleci/config.yml update:
   - use $BASH_ENV to set and share environment variable (PATH) among multiple run steps
   - rename to workflow/job to "unit-n-workflow-tests"

+ cli/save_gmt.py: fix a typo in the module import

+ cli/load_data: check `-t smallbaselineApp.cfg` existence and print out error msg

+ tsview: show the reference index/date info on the slider as the title
1 parent 64ffdef
Raw File
run_stripmap_stack.sh
#! /bin/sh

# clean folders before re-run
if [ -d "Igrams" ]; then
    echo "clean obsolete files/folders before reruning"
    rm -r baselines/ configs/ coregSLC/ geom_reference/ Igrams/ merged/ offsets/ refineSecondaryTiming/ run_files/ SLC/
    rm run_unPackALOS
    cd download
    rm -rf 20*
    mv ARCHIVED_FILES/* .
    cd ..
fi

# prepare SAR data
prepRawALOS.py -i download/ -o SLC -t '' --dual2single
chmod 755 run_unPackALOS
./run_unPackALOS

# stack processing
stackStripMap.py -s SLC/ -d DEM/gsi*.dem -t 1800 -b 1800 -a 20 -r 8 -u snaphu -W interferogram -m 20080212 -f 0.5 --applyWaterMask
submit_run_files4stripmap_stack.py

# mintpy
cd mintpy
smallbaselineApp.py ../KirishimaAlosAT424F620_630.txt
back to top