Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bas Couwenberg
otb
Commits
7a1550d5
Commit
7a1550d5
authored
Jul 11, 2019
by
Gaëlle USSEGLIO
Browse files
ENH : Correction for range sampling rate value into Cosmo sensor
parent
3981da8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Modules/ThirdParty/OssimPlugins/src/ossim/ossimCosmoSkymedModel.cpp
View file @
7a1550d5
...
...
@@ -353,8 +353,10 @@ namespace ossimplugins
add
(
theProductKwl
,
SUPPORT_DATA_PREFIX
,
"azimuth_spacing"
,
std
::
stod
(
metadataBands
[
0
][
"S01_SBI_Line_Spacing"
]));
add
(
theProductKwl
,
SUPPORT_DATA_PREFIX
,
"range_sampling_rate"
,
std
::
stod
(
metadataDataSet
[
"S01_Sampling_Rate"
]));
double
samplingRate
=
1.
/
std
::
stod
(
metadataBands
[
0
][
"S01_SBI_Column_Time_Interval"
]);
add
(
theProductKwl
,
SUPPORT_DATA_PREFIX
,
"range_sampling_rate"
,
samplingRate
);
add
(
theProductKwl
,
SUPPORT_DATA_PREFIX
,
"radar_frequency"
,
std
::
stod
(
metadataDataSet
[
"Radar_Frequency"
]));
add
(
theProductKwl
,
SUPPORT_DATA_PREFIX
,
"slant_range_to_first_pixel"
,
std
::
stod
(
metadataBands
[
0
][
"S01_SBI_Zero_Doppler_Range_First_Time"
]));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment