-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Handling of Sentinel-1 SM products.
- Loading branch information
1 parent
aecfcd9
commit b3d6e1a
Showing
7 changed files
with
165 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
<graph id="Graph"> | ||
<version>1.0</version> | ||
<node id="Read"> | ||
<operator>Read</operator> | ||
<sources/> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<file>${file}</file> | ||
<formatName>SENTINEL-1</formatName> | ||
</parameters> | ||
</node> | ||
|
||
<node id="ThermalNoiseRemoval"> | ||
<operator>ThermalNoiseRemoval</operator> | ||
<sources> | ||
<sourceProduct refid="Read"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<selectedPolarisations/> | ||
<removeThermalNoise>true</removeThermalNoise> | ||
<reIntroduceThermalNoise>false</reIntroduceThermalNoise> | ||
</parameters> | ||
</node> | ||
|
||
<node id="Calibration"> | ||
<operator>Calibration</operator> | ||
<sources> | ||
<sourceProduct refid="ThermalNoiseRemoval"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<sourceBands/> | ||
<auxFile>Latest Auxiliary File</auxFile> | ||
<externalAuxFile/> | ||
<outputImageInComplex>false</outputImageInComplex> | ||
<outputImageScaleInDb>false</outputImageScaleInDb> | ||
<createGammaBand>false</createGammaBand> | ||
<createBetaBand>false</createBetaBand> | ||
<selectedPolarisations>${calib_pola}</selectedPolarisations> | ||
<outputSigmaBand>true</outputSigmaBand> | ||
<outputGammaBand>false</outputGammaBand> | ||
<outputBetaBand>false</outputBetaBand> | ||
</parameters> | ||
</node> | ||
|
||
<node id="Multilook"> | ||
<operator>Multilook</operator> | ||
<sources> | ||
<sourceProduct refid="Calibration"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<sourceBands/> | ||
<nRgLooks>2</nRgLooks> | ||
<nAzLooks>2</nAzLooks> | ||
<outputIntensity>true</outputIntensity> | ||
<grSquarePixel>true</grSquarePixel> | ||
</parameters> | ||
</node> | ||
|
||
|
||
<node id="Terrain-Correction"> | ||
<operator>Terrain-Correction</operator> | ||
<sources> | ||
<sourceProduct refid="Multilook"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<sourceBands/> | ||
<demName>${dem_name}</demName> | ||
<externalDEMFile>${dem_path}</externalDEMFile> | ||
<externalDEMNoDataValue>0.0</externalDEMNoDataValue> | ||
<externalDEMApplyEGM>true</externalDEMApplyEGM> | ||
<demResamplingMethod>BILINEAR_INTERPOLATION</demResamplingMethod> | ||
<imgResamplingMethod>BILINEAR_INTERPOLATION</imgResamplingMethod> | ||
<pixelSpacingInMeter>${res_m}</pixelSpacingInMeter> | ||
<pixelSpacingInDegree>${res_deg}</pixelSpacingInDegree> | ||
<mapProjection>${crs}</mapProjection> | ||
<alignToStandardGrid>false</alignToStandardGrid> | ||
<standardGridOriginX>0.0</standardGridOriginX> | ||
<standardGridOriginY>0.0</standardGridOriginY> | ||
<nodataValueAtSea>false</nodataValueAtSea> | ||
<saveDEM>false</saveDEM> | ||
<saveLatLon>false</saveLatLon> | ||
<saveIncidenceAngleFromEllipsoid>false</saveIncidenceAngleFromEllipsoid> | ||
<saveLocalIncidenceAngle>false</saveLocalIncidenceAngle> | ||
<saveProjectedLocalIncidenceAngle>false</saveProjectedLocalIncidenceAngle> | ||
<saveSelectedSourceBand>true</saveSelectedSourceBand> | ||
<applyRadiometricNormalization>false</applyRadiometricNormalization> | ||
<saveSigmaNought>false</saveSigmaNought> | ||
<saveGammaNought>false</saveGammaNought> | ||
<saveBetaNought>false</saveBetaNought> | ||
<incidenceAngleForSigma0>Use projected local incidence angle from DEM</incidenceAngleForSigma0> | ||
<incidenceAngleForGamma0>Use projected local incidence angle from DEM</incidenceAngleForGamma0> | ||
<auxFile>Latest Auxiliary File</auxFile> | ||
<externalAuxFile/> | ||
</parameters> | ||
</node> | ||
|
||
<node id="LinearToFromdB"> | ||
<operator>LinearToFromdB</operator> | ||
<sources> | ||
<sourceProduct refid="Terrain-Correction"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<sourceBands/> | ||
</parameters> | ||
</node> | ||
|
||
<node id="Write"> | ||
<operator>Write</operator> | ||
<sources> | ||
<sourceProduct refid="LinearToFromdB"/> | ||
</sources> | ||
<parameters class="com.bc.ceres.binding.dom.XppDomElement"> | ||
<file>${out}</file> | ||
<formatName>BEAM-DIMAP</formatName> | ||
</parameters> | ||
</node> | ||
|
||
<applicationData id="Presentation"> | ||
<Description/> | ||
<node id="Read"> | ||
<displayPosition x="7.0" y="131.0"/> | ||
</node> | ||
<node id="Calibration"> | ||
<displayPosition x="43.0" y="188.0"/> | ||
</node> | ||
<node id="Terrain-Correction"> | ||
<displayPosition x="143.0" y="265.0"/> | ||
</node> | ||
<node id="LinearToFromdB"> | ||
<displayPosition x="256.0" y="299.0"/> | ||
</node> | ||
<node id="Multilook"> | ||
<displayPosition x="108.0" y="224.0"/> | ||
</node> | ||
<node id="Write"> | ||
<displayPosition x="461.0" y="307.0"/> | ||
</node> | ||
<node id="ThermalNoiseRemoval"> | ||
<displayPosition x="205.0" y="136.0"/> | ||
</node> | ||
<node id="TOPSAR-Deburst"> | ||
<displayPosition x="277.0" y="173.0"/> | ||
</node> | ||
</applicationData> | ||
</graph> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters