Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • D diapotb
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 16
    • Issues 16
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Artifacts
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
    • Model experiments
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Remote Modules
  • diapotb
  • Wiki
  • Applications
  • app_SARCorrelationGrid

app_SARCorrelationGrid · Changes

Page history
ENH : Wiki for DiapOTB module authored Sep 17, 2019 by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Hide whitespace changes
Inline Side-by-side
Applications/app_SARCorrelationGrid.md 0 → 100644
View page @ 0132c2c9
# SARCorrelationGrid
Computes SAR correlation shift (into temporal domain).
## Description
This application computes correlation shifts between two images : shift in range and shift in azimut. The inputs of this application are MultiLooked images (real images).
## Parameters
**Input Master image (real image)** `-inmaster image` *Mandatory* <br />
Master Image (real image).
**Input Slave image (real image)** `-inslave image` *Mandatory* <br />
Slave Image (real image).
**MultiLook factor on distance** `-mlran int` *Default value: 3* <br />
MultiLook factor on distance.
**MultiLook factor on azimut** `-mlazi int` *Default value: 3* <br />
MultiLook factor on azimut.
**Grid step for range dimension (into SLC/SAR geometry)** `-gridsteprange int` *Default value: 150* <br />
Grid step for range dimension (into SLC/SAR geometry).
**Grid step for azimut dimension (into SLC/SAR geometry)** `-gridstepazimut int` *Default value: 150* <br />
Grid step for azimut dimension (into SLC/SAR geometry).
**Set 0 to offset of first Line and Colunm of output grid** `-nooffset int` *Default value: 0* <br />
If 1, then no offset for the first L/C if output grid.
**Output Correlation grid (Vector Image)** `-out image [dtype]` *Mandatory* <br />
Output Correlation Grid Vector Image (Shift_ran, Shift_azi, Correlation_rate).
**Available RAM (MB)** `-ram int` *Default value: 256* <br />
Available memory for processing (in MB).
## Examples
From the command-line:
```
otbcli_SARCorrelationGrid -inmaster s1a-s4-slc-vv-20160818t014650-20160818t014715-012648-013db1-002_ML.tiff -inslave s1b-s4-slc-vv-20160929t014610-20160929t014634-002277-003d71-002_ML.tiff -out out_CorrelationGrid.tiff
```
From Python:
```
import otbApplication
app = otbApplication.Registry.CreateApplication("SARCorrelationGrid")
app.SetParameterString("inmaster", "s1a-s4-slc-vv-20160818t014650-20160818t014715-012648-013db1-002_ML.tiff")
app.SetParameterString("inslave", "s1b-s4-slc-vv-20160929t014610-20160929t014634-002277-003d71-002_ML.tiff")
app.SetParameterString("out", "out_CorrelationGrid.tiff")
app.ExecuteAndWriteOutput()
```
## Limitations
Only Sentinel 1 products and Cosmo are supported for now.
Clone repository
  • Applications
    • app_SARAddBandInterferogram
    • app_SARAltAmbig
    • app_SARAmplitudeEstimation
    • app_SARCartesianMeanEstimation
    • app_SARCoRegistration
    • app_SARCompensatedComplex
    • app_SARCorrectionGrid
    • app_SARCorrelationGrid
    • app_SARCorrelationRough
    • app_SARDEMGrid
    • app_SARDEMProjection
    • app_SARDEMToAmplitude
    • app_SARDeramp
    • app_SARDoppler0
View All Pages