diff --git a/README.md b/README.md index dab03143..8f629431 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ The HyP3-ISCE2 plugin provides a set of workflows (accessible directly in Python - `insar_stripmap`: A workflow for creating ALOS-1 geocoded unwrapped interferogram using ISCE2's Stripmap processing workflow - `insar_tops`: A workflow for creating full-SLC Sentinel-1 geocoded unwrapped interferogram using ISCE2's TOPS processing workflow - `insar_tops_burst`: A workflow for creating burst-based Sentinel-1 geocoded unwrapped interferogram using ISCE2's TOPS processing workflow -- `insar_tops_multi_burst`: A workflow for creating multi-burst Sentinel-1 geocoded unwrapped interferogram using ISCE2's TOPS processing workflow --- To run a workflow, simply run `python -m hyp3_isce2 ++process [WORKFLOW_NAME] [WORKFLOW_ARGS]`. For example, to run the `insar_tops_burst` workflow: @@ -27,7 +26,7 @@ python -m hyp3_isce2 ++process insar_tops_burst \ and, for multiple burst pairs: ``` -python -m hyp3_isce2 ++process insar_tops_multi_burst \ +python -m hyp3_isce2 ++process insar_tops_burst \ --reference S1_136231_IW2_20200604T022312_VV_7C85-BURST S1_136232_IW2_20200604T022315_VV_7C85-BURST \ --secondary S1_136231_IW2_20200616T022313_VV_5D11-BURST S1_136232_IW2_20200616T022316_VV_5D11-BURST \ --looks 20x4 \ diff --git a/pyproject.toml b/pyproject.toml index 7c75a677..1a573a03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,6 @@ Documentation = "https://hyp3-docs.asf.alaska.edu" [project.scripts] insar_tops_burst = "hyp3_isce2.insar_tops_burst:main" -insar_tops_multi_burst = "hyp3_isce2.insar_tops_multi_burst:main" insar_tops = "hyp3_isce2.insar_tops:main" insar_stripmap = "hyp3_isce2.insar_stripmap:main" merge_tops_bursts = "hyp3_isce2.merge_tops_bursts:main"