SAROrthoInterferogram¶
Interferogram into ground geometry between two SAR images.
Description¶
This application builds the interferogram into ground geometry between two SAR images.
Parameters¶
Input SAR Slave image (Coregistrated image) -insarslave image
Mandatory
Input SAR Slave image (Coregistrated image).
Input SAR Master image -insarmaster image
Mandatory
Input SAR Master image.
Input Topographic Phase (estimation with DEM projection) -topographicphase image
Input Topographic Phase (estimation with DEM projection).
Input Cartesian Mean Master image -incartmeanmaster image
Mandatory
Input Cartesian Mean Master image.
Input DEM -indem image
Mandatory
Get Ground geometry thanks to DEM (only metadata).
Gain to apply for amplitude estimation -gain float
Default value: 0.1
Gain to apply for amplitude estimation
Margin to enlarge SAR scan for calculation -margin int
Default value: 1000
Margin to enlarge SAR scan for calculation
Value to specify the streaming size (in MB) -streamingsizevalue int
Default value: 3000
Value to specify the streaming size (in MB)
Interferogram in ground geometry -out image [dtype]
Mandatory
Output Vector Image : Interferogram in ground geometry.
Available RAM (MB) -ram int
Default value: 256
Available memory for processing (in MB).
Examples¶
From the command-line:
otbcli_SAROrthoInterferogram -insarslave s1b-s4-slc-vv-20160929t014610-20160929t014634-002277-003d71-002.tiff -insarmaster s1a-s4-slc-vv-20160818t014650-20160818t014715-012648-013db1-002_SLC.tiff -incartmeanmaster CartesianMaster.tiff -topographicphase TopographicPhase.tiff -indem S21E055.hgt -gain 0.1 -out s1b-s1a-s4-Orthointerferogram.tiff
From Python:
import otbApplication
app = otbApplication.Registry.CreateApplication("SAROrthoInterferogram")
app.SetParameterString("insarslave", "s1b-s4-slc-vv-20160929t014610-20160929t014634-002277-003d71-002.tiff")
app.SetParameterString("insarmaster", "s1a-s4-slc-vv-20160818t014650-20160818t014715-012648-013db1-002_SLC.tiff")
app.SetParameterString("incartmeanmaster", "CartesianMaster.tiff")
app.SetParameterString("topographicphase", "TopographicPhase.tiff")
app.SetParameterString("indem", "S21E055.hgt")
app.SetParameterFloat("gain", 0.1)
app.SetParameterString("out", "s1b-s1a-s4-Orthointerferogram.tiff")
app.ExecuteAndWriteOutput()
Limitations¶
Only Sentinel 1 (StripMap mode) and Cosmo products are supported for now.