Skip to content
Snippets Groups Projects
Commit 26cabb4d authored by Julien Osman's avatar Julien Osman
Browse files

Merge branch '2255-wrong_projection' into 'release-8.0'

Remove unwanted setting of nearRangeTime

See merge request !892
parents d5a1e727 87a93694
No related branches found
No related tags found
2 merge requests!903Merge release branch 8.0.0 into develop,!892Remove unwanted setting of nearRangeTime
Pipeline #9875 passed
......@@ -191,9 +191,9 @@ void SARParam::FromKeywordlist(const MetaData::Keywordlist & kwl, const std::str
rangeResolution = std::stod(Get(kwl, prefix + "RangeResolution"));
rightLookingFlag = std::stoi(Get(kwl, prefix + "RightLookingFlag"));
azimuthBandwidth = nearRangeTime = std::stod(Get(kwl, prefix + "AzimuthBandwidth"));
rangeBandwidth = nearRangeTime = std::stod(Get(kwl, prefix + "RangeBandwidth"));
azimuthSteeringRate = nearRangeTime = std::stod(Get(kwl, prefix + "AzimuthSteeringRate"));
azimuthBandwidth = std::stod(Get(kwl, prefix + "AzimuthBandwidth"));
rangeBandwidth = std::stod(Get(kwl, prefix + "RangeBandwidth"));
azimuthSteeringRate = std::stod(Get(kwl, prefix + "AzimuthSteeringRate"));
numberOfLinesPerBurst = std::stoul(Get(kwl, prefix + "NumberOfLinesPerBurst"));
numberOfSamplesPerBurst = std::stoul(Get(kwl, prefix + "NumberOfSamplesPerBurst"));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment