-
Notifications
You must be signed in to change notification settings - Fork 299
sensor: add Fucheng-1 parameters #1451
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
Arctic-Ambrun
wants to merge
7
commits into
insarlab:main
Choose a base branch
from
Arctic-Ambrun:main
base: main
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 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1f674fd
Update sensor.py
Arctic-Ambrun 563c335
Update sensor.py
Arctic-Ambrun f988b53
Update sensor.py
Arctic-Ambrun d619453
Update sensor.py
Arctic-Ambrun 2d3f23c
Update sensor.py
yunjunz f616b43
Merge branch 'main' into main
yunjunz 5852344
Update sensor.py
yunjunz 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 |
|---|---|---|
|
|
@@ -30,7 +30,8 @@ | |
| 'rcm' : ['rcm', 'rsatc', 'radarsat-constellation', 'radarsat-constellation-mission'], | ||
| 'sen' : ['sen', 's1', 's1a', 's1b', 'sent1', 'sentinel1', 'sentinel1a', 'sentinel1b'], | ||
| 'tsx' : ['tsx', 'terra', 'terrasar', 'terrasarx', 'tdx', 'tandemx'], | ||
| 'uav' : ['uav', 'uavsar'], | ||
| 'uav' : ['uav', 'uavsar'],, | ||
| 'fc1' : ['fc1','fucheng', 'FuCheng-1', 'FuCheng'], | ||
| } | ||
|
|
||
| # duplicated in mintpy.cli.prep_gamma | ||
|
|
@@ -478,6 +479,27 @@ def get_unavco_mission_name(meta_dict): | |
| 'noise_equivalent_sigma_zero': -22, # dB | ||
| } | ||
|
|
||
| # Fucheng-1 | ||
| # reference: | ||
| # 1. Table1 in <High Resolution Sparse Imaging and Doppler Parameter Estimation of Fucheng‑1 SAR Satellite> Cai et al. (2025) | ||
| # 2. manual corrected parameters against par file from GAMMA | ||
| # 3. table from https://cn.spacety.com/SARDevelopment | ||
| FC1 = { | ||
| 'altitude' : 505e3, # m | ||
| 'orbit_inclination' : 97.3, # deg | ||
| 'repeat_cycle' : 11, # day | ||
| # sar / antenna | ||
| 'carrier_frequency' : 5.4000001e+09, # Hz | ||
| 'antenna_length' : 4.56, # m | ||
| 'antenna_width' : 0.8, # m | ||
| 'chirp_bandwidth' : 1.0e+08, # Hz | ||
| 'sampling_frequency' : 1.20e+08, # Hz | ||
| 'azimuth_pixel_size' : 13.96, # m, this is the ground azimuth pixel spacing, NOT on orbits! | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This parameter is much larger than |
||
| 'range_pixel_size' : 1.24, # m | ||
| # 'ground_range_pixel_size' : ?, # m | ||
| } | ||
|
|
||
|
|
||
|
|
||
| ##-------------------- S-band --------------------## | ||
|
|
||
|
|
@@ -786,6 +808,7 @@ def get_unavco_mission_name(meta_dict): | |
| 'rsat2' : RSAT2, | ||
| 'rcm' : RCM, | ||
| 'gf3' : GF3, | ||
| 'fc1' : FC1, | ||
| # S-band | ||
| 'hj1c' : HJ1C, | ||
| # L-band | ||
|
|
||
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.
Uh oh!
There was an error while loading. Please reload this page.