Add a function to compute a radar grid that spans an input geocoded grid (MCR #90132)#99
Merged
gmgunter merged 16 commits intoisce-framework:developfrom Aug 18, 2025
Merged
Conversation
Expose the C++ constants `isce3::core::GLOBAL_MIN_HEIGHT` and `isce3::core::GLOBAL_MAX_HEIGHT` to Python.
See the discussion on this comment: https://github-fn.jpl.nasa.gov/isce-3/isce/pull/2097#discussion_r26503
This doesn't work in Python >=3.9 until Python 3.11. Multiple inheritance with `NamedTuple` has limited support. See: * python/cpython#19363 * python/cpython#88089 * python/cpython#92027
Member
Author
|
@gshiroma @nemo794 this is a copy of a PR that was approved on the internal GitHub server: https://github-fn.jpl.nasa.gov/isce-3/isce/pull/2097 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new function
isce3.geometry.get_bounding_radar_grid()that returns aRadarGridParametersobject that spans an inputGeoGridParametersobject. The output radar grid is the smallest radar grid that contains all points within the input geocoded grid over a user-specified height range. Additional margin may be added to extend the radar grid azimuth & range extents.This functionality is useful for implementing the static layers workflow. Many of the layers in the static layers product are computed from an input radar grid, but the input to the static layers workflow is a geo grid -- not a radar grid. Therefore we will need the ability to compute a radar grid that spans the input geo grid.