umr-lops / xsar

Synthetic Aperture Radar (SAR) Level-1 GRD python mapper for efficient xarray/dask based processing
https://cyclobs.ifremer.fr/static/sarwing_datarmor/xsar/
MIT License
25 stars 8 forks source link

s1meta needs access to fmrate annotations #52

Closed agrouaze closed 2 years ago

agrouaze commented 2 years ago

Sentinel1 products annotations contains information related to FM (Frequency Modulated) rate: image see https://sentinel.esa.int/documents/247904/1877131/Sentinel-1-Product-Specification

image

These information are useful in chirp de-ramping for instance. data is stored in xml files like this:

azimuthFmRateList count="11">
      <azimuthFmRate>
        <azimuthTime>2021-01-02T16:31:42.597648</azimuthTime>
        <t0>5.674779755092819e-03</t0>
        <azimuthFmRatePolynomial count="3">-2.170515874841713e+03 3.988051193274622e+05 -6.535396014283583e+07</azimuthFmRatePolynomial>
      </azimuthFmRate>
      <azimuthFmRate>

these annotations could be accessible in s1ds.s1meta.azimuth_fmrate object.

agrouaze commented 2 years ago

issue closed with #53