Skip to content

Commit

Permalink
Per reviewer comments: 1) replaced cam->DetectorResolution() with cam…
Browse files Browse the repository at this point in the history
…->ObliqueDetectorResolution(false), where "false" refers to the useLocal parameter; and 2) fixed typo in phocube.xml. Addresses DOI-USGS#5467.
  • Loading branch information
kledmundson committed Jul 23, 2024
1 parent 031dc9f commit 3cbc0a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion isis/src/base/apps/phocube/phocube.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ namespace Isis {
if ( surfaceobliquedetectorresolution ) {
double emission = cam->EmissionAngle() * DEG2RAD;
if ( emission < HALFPI ) {
out[index] = cam->DetectorResolution() / cos(emission);
out[index] = cam->ObliqueDetectorResolution(false); // useLocal=false
}
index += 64 * 64;
}
Expand Down
2 changes: 1 addition & 1 deletion isis/src/base/apps/phocube/phocube.xml
Original file line number Diff line number Diff line change
Expand Up @@ -979,7 +979,7 @@ xsi:noNamespaceSchemaLocation=
FROM
</parameterName>
</image>
</inputImages>S
</inputImages>
<outputImages>
<image src="assets/images/phocube_lat_band.png" width="496" height="496">
<brief>Output file band 1 (Latitude)</brief>
Expand Down

0 comments on commit 3cbc0a6

Please sign in to comment.