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

Merge branch '2256-right_looking_flag' into 'release-8.0'

Set the default value of rightLookingFlag for S1 to TRUE

See merge request !891
parents 852718ed b75514a1
No related branches found
No related tags found
2 merge requests!903Merge release branch 8.0.0 into develop,!891Set the default value of rightLookingFlag for S1 to TRUE
Pipeline #9874 passed
......@@ -854,8 +854,12 @@ void Sentinel1ImageMetadataInterface::ParseGeom(ImageMetadata & imd)
auto hasSAR = GetSAR(sarParam);
if (hasSAR)
{
// Old metadata (from geom) does not contain support_data.look_side for S1 products
// Rigth looking flag is always true for S1 products => hard coded value, here
sarParam.rightLookingFlag = true;
imd.Add(MDGeom::SAR, sarParam);
}
SARCalib sarCalib;
std::istringstream(m_MetadataSupplierInterface->GetAs<std::string>("calibration.startTime")) >> sarCalib.calibrationStartTime;
std::istringstream(m_MetadataSupplierInterface->GetAs<std::string>("calibration.stopTime")) >> sarCalib.calibrationStopTime;
......
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