SARDeburst

此应用程序通过删除冗余行来执行Sentinel1 IW SLC图像的拆分。

描述

Sentinel1 IW SLC产品由每个子条在方位时间上重叠的几个突发组成,由黑线分隔 [1] 。去脉冲串操作在于通过去除黑色分隔线以及脉冲串之间的冗余线来产生关于方位时间的连续图像。

请注意,输出传感器型号会相应更新。这种去爆裂操作是用OTB对S1IW SLC产品进行正校正的完美的前处理步骤 [2] 而不会受到突发分离造成的伪影的影响。有两种模式可用于输出图像:具有所有样本和仅具有有效样本

参数

Input Sentinel1 IW SLC Image -in image Mandatory
Raw Sentinel1 IW SLC image, or any extract of such made by OTB (geom file needed)

Output Image -out image [dtype] Mandatory
Deburst image, with updated geom file that can be further used by Orthorectification application. If the input image is a raw Sentinel1 product, uint16 output type should be used (encoding of S1 product). Otherwise, output type should match type of input image.

Select the modes for output image -onlyvalidsamples bool Default value: false
If true, the selected mode is with only valid samples.

Available RAM (MB) -ram int Default value: 256
Available memory for processing (in MB).

实例

从命令行执行以下操作:

otbcli_SARDeburst -in s1_iw_slc.tif -out s1_iw_slc_deburst.tif

来自Python的评论:

import otbApplication

app = otbApplication.Registry.CreateApplication("SARDeburst")

app.SetParameterString("in", "s1_iw_slc.tif")
app.SetParameterString("out", "s1_iw_slc_deburst.tif")

app.ExecuteAndWriteOutput()

局限性

目前仅支持Sentinel1 IW SLC产品。对其他Sentinel1模式或TerrasarX图像的处理不会导致图像和元数据发生变化。来自其他传感器的图像将导致错误。

另请参阅