From 221977a5596072656144215435b1716681e5c732 Mon Sep 17 00:00:00 2001 From: Pierre Leprovost Date: Thu, 16 Jun 2022 15:35:59 +0300 Subject: [PATCH 1/2] [feat/ortho] First draft --- docs/comingsoon.md | 3 --- docs/productFormats/grd.md | 10 +++++++++- docs/productFormats/packaging.md | 2 +- docs/productguide/products.md | 2 +- 4 files changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/comingsoon.md b/docs/comingsoon.md index 68af81aa..942f6a90 100644 --- a/docs/comingsoon.md +++ b/docs/comingsoon.md @@ -11,8 +11,5 @@ You have probably seen the video. Because ICEYE satellites can stare at a point ### Color Multilook Extended Dwell Imaging This is related to SAR Video as it uses the satellite's agility to collect an image over a wide range of angles. We noticed that some objects are more visible when observed from certain directions. The color multilook image may present more options to detect subtle objects in SAR imagery like powerlines or moving targets. -### Orthorectified imagery -This is a tricky one for ICEYE. We hate the way that orthorectified imagery warps and distorts our beautiful imagery and as SAR professionals we prefer to use GIS tools to correct for SAR layover and geometric distortions. But we have come to realise that there are still a lot of people out there that just want to buy a map-like product. So we are going to do our best to provide it. - ### Access to Phase History Data At ICEYE we want to demystify SAR and encourage people to learn about signal processing and make their own SAR images from our data. We think that a good way to do this is to provide raw radar pulse data in a standardised way (eg the NGA CPHD format) so that others can use our received RF signal. Its very niche but may be new developments and applications will come from it thereby making SAR more useful and accessible. diff --git a/docs/productFormats/grd.md b/docs/productFormats/grd.md index 2573aca0..318ebfa4 100644 --- a/docs/productFormats/grd.md +++ b/docs/productFormats/grd.md @@ -70,5 +70,13 @@ Figure 2 provides a useful summary of Amplitude images in the context of the pro
Figure 2: The Processing Steps and Implementation Considerations for ICEYE amplitude images
+## GRD's illegitimate child: the Orthorectified GRD +This is a tricky one for ICEYE. We hate the way that orthorectified imagery warps and distorts our beautiful imagery and as SAR professionals we prefer to use GIS tools to correct for SAR layover and geometric distortions. But we have come to realise that there are still a lot of people out there that just want to buy a map-like product. Currently we can provide orthorectified imagery from the following Digital Elevation models: + * Copernicus DEM GLO-30 + * Copernicus DEM GLO-90 + * NASA DEM version 1 + * ASTER GDEM version 3 +Terrain prokjection is performed with one the chosen DEM using GDAL gdalwarp tool. The new image is stored as a Geotif just like GRD product. We produce a new XML file from the GRD one with extra field describing the DEM used for orthorectification. + ## References -\bibliography \ No newline at end of file +\bibliography diff --git a/docs/productFormats/packaging.md b/docs/productFormats/packaging.md index a960a112..eb01d9f1 100644 --- a/docs/productFormats/packaging.md +++ b/docs/productFormats/packaging.md @@ -39,5 +39,5 @@ SAR images can be ordered either from archive (previously collected imagery) or ICEYE’s focus is currently on the integrity of complex and amplitude images. This will expand over the next year as we introduce a phase history data product and other products derived from complex and amplitude images. -A basic ICEYE product is represented by a set of SAR image binary data, corresponding image metadata and it is delivered as a singular product package. Products are characterized by the payload configuration (such as imaging mode and look direction) used by the respective satellite, as well as the level of processing that has been applied to the SAR scene. With respect to the data geometric projection and representation, products are differentiated into two primary types: geo-referenced Single Look Complex (SLC) and Amplitude Images (Also known as Ground Range Detected (GRD) scenes). SAR image binary data, delivered as digital numbers or quadrature components, can be converted to radar brightness $\beta_0$ and mean radar cross section $\sigma_0$ using the annotated calibration factor in the image metadata. +A basic ICEYE product is represented by a set of SAR image binary data, corresponding image metadata and it is delivered as a singular product package. Products are characterized by the payload configuration (such as imaging mode and look direction) used by the respective satellite, as well as the level of processing that has been applied to the SAR scene. With respect to the data geometric projection and representation, products are differentiated into two primary types: geo-referenced Single Look Complex (SLC) and Amplitude Images (Also known as Ground Range Detected (GRD) and terrain projected (ORTHO) scenes). SAR image binary data, delivered as digital numbers or quadrature components, can be converted to radar brightness $\beta_0$ and mean radar cross section $\sigma_0$ using the annotated calibration factor in the image metadata. diff --git a/docs/productguide/products.md b/docs/productguide/products.md index aaf5dcff..fbc59201 100644 --- a/docs/productguide/products.md +++ b/docs/productguide/products.md @@ -17,7 +17,7 @@ SAR complex images contain pixels that have both amplitude and phase values. The ### Amplitude Images -These are the familiar SAR gray-scale images with amplitude-only pixels. They are “multi-looked” to reduce the grainy effect of speckle, at the cost of slightly lower resolution. Amplitude images are projected to the ground surface and can be oriented with respect to the sensor or produced on an ellipsoid-based map projection. ICEYE produces amplitude images in the natural range-azimuth sensor orientation because they offer the most flexibility in exploitation. To be consistent with conventional terminology, these sensor-oriented images are called Ground Range Detected (GRD). This term may change in the future to be something more meaningful. +These are the familiar SAR gray-scale images with amplitude-only pixels. They are “multi-looked” to reduce the grainy effect of speckle, at the cost of slightly lower resolution. Amplitude images are projected to the ground surface and can be oriented with respect to the sensor or produced on an ellipsoid-based map projection. ICEYE produces amplitude images in the natural range-azimuth sensor orientation because they offer the most flexibility in exploitation. To be consistent with conventional terminology, these sensor-oriented images are called Ground Range Detected (GRD). This term may change in the future to be something more meaningful. We also can provide terrain projected amplitude images also called orthorectified images (ORTHO). !!! info Amplitude images are most useful for rapid observation of a location regardless of lighting or weather conditions. From b0cf9e2f689c2d5d9d3d44658dd92670557bbfe3 Mon Sep 17 00:00:00 2001 From: Pierre Leprovost Date: Thu, 22 Sep 2022 09:36:26 +0300 Subject: [PATCH 2/2] Second draft --- docs/productFormats/grd.md | 8 -------- docs/productFormats/ortho.md | 19 +++++++++++++++++++ docs/productguide/products.md | 3 +-- 3 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 docs/productFormats/ortho.md diff --git a/docs/productFormats/grd.md b/docs/productFormats/grd.md index 318ebfa4..8a5a5c61 100644 --- a/docs/productFormats/grd.md +++ b/docs/productFormats/grd.md @@ -70,13 +70,5 @@ Figure 2 provides a useful summary of Amplitude images in the context of the pro
Figure 2: The Processing Steps and Implementation Considerations for ICEYE amplitude images
-## GRD's illegitimate child: the Orthorectified GRD -This is a tricky one for ICEYE. We hate the way that orthorectified imagery warps and distorts our beautiful imagery and as SAR professionals we prefer to use GIS tools to correct for SAR layover and geometric distortions. But we have come to realise that there are still a lot of people out there that just want to buy a map-like product. Currently we can provide orthorectified imagery from the following Digital Elevation models: - * Copernicus DEM GLO-30 - * Copernicus DEM GLO-90 - * NASA DEM version 1 - * ASTER GDEM version 3 -Terrain prokjection is performed with one the chosen DEM using GDAL gdalwarp tool. The new image is stored as a Geotif just like GRD product. We produce a new XML file from the GRD one with extra field describing the DEM used for orthorectification. - ## References \bibliography diff --git a/docs/productFormats/ortho.md b/docs/productFormats/ortho.md new file mode 100644 index 00000000..1e39531c --- /dev/null +++ b/docs/productFormats/ortho.md @@ -0,0 +1,19 @@ +# The ORTHO product + +Because of the way we acquire and process our data, the amplitude image from raw SLC data appears completely distorted. GIS application require correct "location" of our pixels in order to do precise measurements. We account for three components to these distortions: the aquisition geometry, the curvature of the earth and the local toplogy. Hence the necessity for an orthorectified product. + +## What is Orthorectification? + +Orthorectification is the process of compensating for three component of distortion. We will have to calculate how much we "move" our pixels in order to correct for thoses. +First, a correction of the distrotions caused by the sensor/scene geometry. SAR satellites observe their target broadside at an angle which cause a 'tilt' and 'strech' of the iamge when layed on a surface representing the earth's surface, for example. Pixels are moved to so called horizontal coordinates, simply at the correct lattitude and longitude coordinates in WGS84 referencial. Our [GRD product](grd.md) already correct for the satellite geometry and the horizontal positions in WGS84 coordinates, remain the earth curvature and the local topology. +Second we have to account for the global datum of the earth which is mathematically modeled. We evaluation the elevation from the ellipsoid surface model (here EGM16, in WGS84) for each pixels. +Finally we evaluated add the local elevation from a Digital Evelation Model (DEM). Accuracy of the DEM data is an important factor to properly interpolate the pixels positions. +The results is a 3D coordinates for each pixels which can be used to project the image plane. + +### DEM +Currently we can provide orthorectified imagery from the following Digital Elevation models: + * Copernicus DEM GLO-30 + * Copernicus DEM GLO-90 + * NASA DEM version 1 + * ASTER GDEM version 3 + Terrain projection is performed with one the chosen DEM using GDAL gdalwarp tool. The new image is stored as a Geotif just like our GRD product. We produce a new XML file from the GRD one with extra field describing the DEM used for orthorectification. diff --git a/docs/productguide/products.md b/docs/productguide/products.md index fbc59201..0a131642 100644 --- a/docs/productguide/products.md +++ b/docs/productguide/products.md @@ -17,12 +17,11 @@ SAR complex images contain pixels that have both amplitude and phase values. The ### Amplitude Images -These are the familiar SAR gray-scale images with amplitude-only pixels. They are “multi-looked” to reduce the grainy effect of speckle, at the cost of slightly lower resolution. Amplitude images are projected to the ground surface and can be oriented with respect to the sensor or produced on an ellipsoid-based map projection. ICEYE produces amplitude images in the natural range-azimuth sensor orientation because they offer the most flexibility in exploitation. To be consistent with conventional terminology, these sensor-oriented images are called Ground Range Detected (GRD). This term may change in the future to be something more meaningful. We also can provide terrain projected amplitude images also called orthorectified images (ORTHO). +These are the familiar SAR gray-scale images with amplitude-only pixels. They are “multi-looked” to reduce the grainy effect of speckle, at the cost of slightly lower resolution. Amplitude images are projected to the ground surface and can be oriented with respect to the sensor or produced on an ellipsoid-based map projection. ICEYE produces amplitude images in the natural range-azimuth sensor orientation because they offer the most flexibility in exploitation. To be consistent with conventional terminology, these sensor-oriented images are called Ground Range Detected (GRD). This term may change in the future to be something more meaningful. We also provide terrain corrected amplitude images also called [orthorectified images](../productFormats/ortho.md). !!! info Amplitude images are most useful for rapid observation of a location regardless of lighting or weather conditions. -