-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse azimuth fm rate polynomial #59
Parse azimuth fm rate polynomial #59
Conversation
…atePolynomial` in older format.
… exception handling
Co-authored-by: Liang Yu <liangjyu@gmail.com>
… into annotation_reader
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
… into annotation_reader
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
… into annotation_reader
Co-authored-by: Liang Yu <liangjyu@gmail.com>
Co-authored-by: Liang Yu <liangjyu@gmail.com>
… affected functions accordingly.
Unit test fixes from isce-framework#58
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
Co-authored-by: Gustavo H. X. Shiroma <52007211+gshiroma@users.noreply.github.com>
… into annotation_reader
Updating the main branch of this fork to update after `s1_annotation.py`
…zimuth_fm_rate_polynomial
… into parse_azimuth_fm_rate_polynomial
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you for the update, @seongsujeong . I just have some minor comments: please avoid these types of qualitative statements, especially in CAPS LOCK: VERY old
. Also, please follow PEP8 rules for inline comments (two spaces before and a single space after #
): https://peps.python.org/pep-0008/#inline-comments .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, just some nit-picking :)
This PR is in regards to #51 when loading azimuth FM rate polynomial from LADS .xml files. It was found that some S1 SAFE data with old IPF has different format for the polynomial. The examples are as below:
S1A_IW_SLC__1SSV_20150114T015005_20150114T015035_004161_0050BB_87F4 (IPF
2.36
)S1B_IW_SLC__1SDV_20170807T010035_20170807T010102_006827_00C043_B7E0 (IPF
2.82
)This fix detects if the field
azimuthFmRatePolynomial
exists in the input ET, and try different parsing strategy depending on the existence.