Skip to content

Commit

Permalink
Adjusted detector offset
Browse files Browse the repository at this point in the history
  • Loading branch information
acpaquette committed Oct 31, 2024
1 parent c2f9275 commit 2635c24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2635c24

Please sign in to comment.