File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -532,7 +532,9 @@ std::tuple<double, double> isce3::geometry::lookIncAngFromSlantRange(
532
532
{
533
533
// get combinations of range curvature with platform height as well as mean
534
534
// DEM height
535
- auto [schgt_plus_rgcurv, demhgt_plus_rgcurv] =
535
+ double schgt_plus_rgcurv;
536
+ double demhgt_plus_rgcurv;
537
+ std::tie (schgt_plus_rgcurv, demhgt_plus_rgcurv) =
536
538
_get_rgcurv_plus_hgt (orbit, az_time, dem_interp, ellips);
537
539
538
540
// calculate look angle
@@ -560,7 +562,9 @@ isce3::geometry::lookIncAngFromSlantRange(
560
562
{
561
563
// get combinations of along-track range curvature with platform height as
562
564
// well as with mean DEM height
563
- auto [schgt_plus_rgcurv, demhgt_plus_rgcurv] =
565
+ double schgt_plus_rgcurv;
566
+ double demhgt_plus_rgcurv;
567
+ std::tie (schgt_plus_rgcurv, demhgt_plus_rgcurv) =
564
568
_get_rgcurv_plus_hgt (orbit, az_time, dem_interp, ellips);
565
569
566
570
// define a lambda function for look angle and slant range calculation
You can’t perform that action at this time.
0 commit comments