-
Notifications
You must be signed in to change notification settings - Fork 72
Support new corner reflector CSV format #176
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
Open
bhawkins
wants to merge
13
commits into
isce-framework:develop
Choose a base branch
from
bhawkins:square_corners
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c4fbabb
wip support square trihedrals and new format
bhawkins 6ace09d
Move CR model into a separate function for easier testing
bhawkins bb83453
Merge branch 'develop' into square_corners
bhawkins eb4c518
Remove "triangular" from names in isce3
bhawkins 1f81c8e
Remove "LSAR" from flags for easier refactor and support "Shape" colu…
bhawkins ae32ff7
check peak RCS value in unit test
bhawkins 3e35923
Add RCS continuity check
bhawkins 2e266ec
Add new format CSV unit test. Fix capitalization.
bhawkins 28bb6f2
Generalize abscal workflow to square trihedrals
bhawkins 880266c
Generalize PTA to square trihedrals
bhawkins e805a26
Update some comments
bhawkins 9c7db23
Merge remote-tracking branch 'origin/develop' into square_corners
bhawkins 4300130
Add a note about the new .csv test file.
bhawkins File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,10 @@ | ||
| from . import point_target_info | ||
| from .corner_reflector import ( | ||
| TriangularTrihedralCornerReflector, | ||
| CRShape, | ||
| TrihedralCornerReflector, | ||
| get_crs_in_polygon, | ||
| get_target_observation_time_and_elevation, | ||
| parse_triangular_trihedral_cr_csv, | ||
| predict_triangular_trihedral_cr_rcs, | ||
| predict_trihedral_cr_rcs, | ||
| ) | ||
| from .radar_cross_section import measure_target_rcs |
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
FYI, if necessary, in order to make the enum case insensitive (
str.casefold()) to the string inputs, one can update__missing__classmethod inEnumas shown here