F-SAR - Data Product Formats
Product description for F-SAR data products, recent operating SAR system
Operational F-SAR processing chains produce a variety of different data products. The most common product types include:
Other data products include SAR imagery from circular acquisitions, polarimetric change detection results, geocoded amplitude mosaics and more.
The structure and contents of these data products is described in the F-SAR Product Format Description document (see download, right).
The binary data in F-SAR products is generally stored in the so-called RAT format. In addition, most RAT files are accompanied by .hdr files, which allow the data to be opened in ENVI. The widely used GDAL software library also supports the ENVI format, such that F-SAR data can also be opened using free alternatives such as QGis. Any of these programs can then be used to export F-SAR data to various other file formats, such as GeoTiff.
Researchers developing their own SAR signal processing techniques on the basis of F-SAR data may find it more convenient to read the binary in F-SAR products directly. A direct interface to the data may even be required when the application under consideration involves working with complex data or sensor tracks, as neither data type is well supported by GIS software.
A native interface to F-SAR data is available as part of the PyRAT radar signal processing framework (Python RAdarTools). Researchers may want to consider using PyRAT as a basis for implementing new signal processing algorithms.
The following basic usage examples assume that PyRat has been downloaded and installed.
Some campaign data use the Cloud Optimized GeoTiff (COG) format instead of RAT to store binary image data. The rasterio package is recommended for working with this data in python. F-SAR products in this format also include sensor position and attitude information in NetCDF4 files, which can be read with the netCDF4 python package. The basic examples below show how rasterio and netCDF4 can be used to read data in COG format.
Radar data is usually provided in the radar slant-range coordinate system and on a geographic grid. The open source fsar_applyLUTs tool (apply LookUpTables) has been developed to facilitate the bi-directional transformation of imagery from one coordinate system to the other.