-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from SAR-ARD/geolocation_accuracy
Geolocation accuracy
- Loading branch information
Showing
6 changed files
with
134 additions
and
11 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
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,48 @@ | ||
Geolocation Accuracy | ||
==================== | ||
|
||
Item 4.3 of the CARD4L NRB specification requires, as minimum, an estimate of the absolute location error (ALE) “as | ||
bias and standard deviation, provided in slant range/azimuth, or Northing/Easting” [1]. As desired target the accuracy | ||
is less or equal 0.1 pixels radial root mean square error (rRMSE), which can be defined as: | ||
|
||
.. math:: | ||
RMSE_{planar} = \sqrt{RMSE_{SLC,Az}^2 + (\frac{RMSE_{SLC,Rg}}{sin(\theta_{i,min})})^2 + RMSE_{DEM,planar}^2 + RMSE_{proc}^2} | ||
The error induced by the DEM can be described as: | ||
|
||
.. math:: | ||
RMSE_{DEM,planar} = \frac{\sigma_{DEM}}{tan(\theta_{i,min})} | ||
where | ||
|
||
:math:`\theta_{i,min}` = The minimum possible angle of incidence | ||
|
||
:math:`RMSE_{SLC,Az/Rg}` = Error induced by SLC source data in azimuth/range | ||
|
||
:math:`RMSE_{DEM,planar}` = Error induced by DEM inaccuracy | ||
|
||
:math:`RMSE_{proc}` = Error induced by other processing steps | ||
|
||
:math:`\sigma_{DEM}` = DEM accuracy at :math:`1\sigma` (LE68) | ||
|
||
|
||
Limitations | ||
----------- | ||
Currently, the following simplifications need to be considered for the calculation of rRMSE values found in the metadata | ||
of each S1-NRB product: | ||
|
||
* Processing induced errors (:math:`RMSE_{proc}`) and the error term related to DEM interpolation are not further considered and assumed to be 0. | ||
* The DEM accuracy (:math:`\sigma_{DEM}`) is estimated on the global mean accuracy LE90 reported for the COP-DEM [2] under the assumption of gaussian distribution: | ||
|
||
* Global: LE90 = 2.57; LE68 :math:`\approx` 1.56 | ||
|
||
* rRMSE is only calculated if a COP-DEM was used for processing, otherwise the value is set to ``None`` | ||
|
||
Development Status | ||
------------------ | ||
The development status is tracked and discussed in the following Github issue: https://github.com/SAR-ARD/S1_NRB/issues/33 | ||
|
||
References | ||
----------- | ||
* [1] https://ceos.org/ard/files/PFS/NRB/v5.5/CARD4L-PFS_NRB_v5.5.pdf | ||
* [2] https://spacedata.copernicus.eu/documents/20126/0/GEO1988-CopernicusDEM-SPE-002_ProductHandbook_I1.00.pdf/082dd479-f908-bf42-51bf-4c0053129f7c?t=1586526993604 |
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ General Topics | |
installation.rst | ||
usage.rst | ||
S1_NRB.rst | ||
geoaccuracy.rst |