SARConcatenateBursts¶
连接突发列表以提供完整的SAR突发图像。
描述¶
这个应用程序执行猝发连接,并提供SAR猝发图像。它读取输入图像列表(单脉冲),并通过去脉冲操作生成整个SAR图像。
参数¶
Input bursts list -il image1 image2...
Mandatory
The list of bursts to concatenate.
Input Sentinel1 IW SLC Image (only metadata used) -insar image
Mandatory
Raw Sentinel1 IW SLC image, or any extract of such made by OTB (geom file needed).
Output Image -out image [dtype]
Mandatory
The concatenated and debursted output image.
Index of the first Burst -burstindex int
Default value: 0
Index for the first required Burst
Available RAM (MB) -ram int
Default value: 256
Available memory for processing (in MB).
实例¶
从命令行执行以下操作:
otbcli_SARConcatenateBursts -insar s1_iw_slc.tif -il Burst0.png Burst1.png -out otbConcatenateBursts.tif
来自Python的评论:
import otbApplication
app = otbApplication.Registry.CreateApplication("SARConcatenateBursts")
app.SetParameterString("insar", "s1_iw_slc.tif")
app.SetParameterStringList("il", ['Burst0.png', 'Burst1.png'])
app.SetParameterString("out", "otbConcatenateBursts.tif")
app.ExecuteAndWriteOutput()
局限性¶
目前仅支持Sentinel1 IW SLC产品。为了拼接多个脉冲串,每个脉冲串的所有有效行都需要作为输入。即:小心一个脉冲串中的ROI提取。