From 2635c2493c070f20100865ae1bc9f0a1637abf67 Mon Sep 17 00:00:00 2001 From: acpaquette Date: Wed, 30 Oct 2024 17:06:42 -0700 Subject: [PATCH] Adjusted detector offset --- .../objs/ClipperPushBroomCamera/ClipperPushBroomCamera.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isis/src/clipper/objs/ClipperPushBroomCamera/ClipperPushBroomCamera.cpp b/isis/src/clipper/objs/ClipperPushBroomCamera/ClipperPushBroomCamera.cpp index fe2de34999..c844ac1619 100644 --- a/isis/src/clipper/objs/ClipperPushBroomCamera/ClipperPushBroomCamera.cpp +++ b/isis/src/clipper/objs/ClipperPushBroomCamera/ClipperPushBroomCamera.cpp @@ -73,7 +73,7 @@ namespace Isis { // Detector offset from label is 0 - 2047 but ISIS is zero based // with the detector offset being +/- 1024 pixels (2048/2) // Double check this against the SIS - double detectorOffset = toDouble(inst["DetectorOffset"]) - 1023.0; + double detectorOffset = -(toDouble(inst["DetectorOffset"]) - 1023.0); focalMap->SetDetectorOffset(0.0, detectorOffset); // Set up distortion map