isce-framework / isce-framework/s1-reader
read calibration and noise annotation:
@hfattahi is already working on this.
Since Apr 21, 2022.
- Dominant language
- Python
- Stars
- 34
- Forks
- 16
- PR merge metrics
- No merged PRs in 30d
Description
Checked for duplicates
Yes - I've already checked
Alternatives considered
Yes - and alternatives don't suffice
Related problems
Sentinel-1 SLC data are provided as DN numbers. A user can convert the DN numbers to beta0, sigma0 or gamma by applying a calibration factor to the DN values as:
value(i) = |DN_i|^2/A_i^2
where A_i is one of beta0, sigma0, or gamma0 LUTs.
The users would interpolate LUTs with a bilinear interpolation to get A_i at any pixel of interest.
To be able to apply these conversions, the sentinel-1 reader needs to extract any of those LUTs.
Similarly a user can comute the noise equivalent sigma0, beta0, gamma0 or original DN and correct the power. Essentially as suggested by ESA spec, one can correct for noise and scale to calibrated data in one shot as:
value(i) = (|DN_i|^2 - eta_i)/A_i^2
eta_i is the noise power interpolated from the noise LUT.
Describe the feature request
The s1-reader needs to read the LUTs for any of the sigmaNought, betaNought or gamma from one of the calibration files in the *.SAFE/annotation/calibration/calibration*xml files. Similar to the annotaion file which the reader already understands there are 3 calibration files for three sub-swaths.
The reader also needs to read the LUT for the noise power which is located at *.SAFE/annotation/calibration/noise*xml
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.