Changes
Page history
Copy diapotb wiki into pydiabotb wiki
authored
Aug 19, 2022
by
Valentin Genin
Show whitespace changes
Inline
Side-by-side
Applications/app_SARAddBandInterferogram.md
0 → 100644
View page @
1dc7927d
# SARAddBandInterferogram
Replace an amplitude for input interferogram.
## Description
Replace an amplitude for input interferogram and merge it to rebuild three bands (amp, pha and coh).
## Parameters
**Input Interferogram with correct amplitude**
`-ininterfamp image`
*Mandatory*
<br
/>
Input Interferogram with correct amplitude.
**Input Compensated complex image**
`-incomplexamp image`
*Mandatory*
<br
/>
Input Compensated complex image.
**Input Interferogram**
`-ininterf image`
*Mandatory*
<br
/>
Input Interferogram.
**Averaging on distance for output interferogram**
`-mlran int`
*Default value: 1*
<br
/>
Averaging on distance for output interferogram.
**Averaging on azimut for output interferogram**
`-mlazi int`
*Default value: 1*
<br
/>
Averaging on azimut for output interferogram.
**Gain to apply on output amplitude**
`-gain float`
*Default value: 0.1*
<br
/>
Gain to apply on output amplitude
**Output interferogram (after filtering)**
`-out image [dtype]`
*Mandatory*
<br
/>
Output Image : Interferogram after filtering with 3 corrected bands (amp, pha, coh).
**Available RAM (MB)**
`-ram int`
*Default value: 256*
<br
/>
Available memory for processing (in MB).
## Examples
From the command-line:
```
otbcli_SARAddBandInterferogram -ininterfamp interferogram_amp.tiff -ininterf interferogram_phacoh.tiff -out outInterferogram.tiff
```
From Python:
```
import otbApplication
app = otbApplication.Registry.CreateApplication("SARAddBandInterferogram")
app.SetParameterString("ininterfamp", "interferogram_amp.tiff")
app.SetParameterString("ininterf", "interferogram_phacoh.tiff")
app.SetParameterString("out", "outInterferogram.tiff")
app.ExecuteAndWriteOutput()
```
## Limitations
Only Sentinel 1 (IW and StripMap mode) and Cosmo products are supported for now.