Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ ctest FunctionalTestJigsawApollo to validate this output. [#5710](https://github
- Fixed `footprintinit` to find mapping group (no caps). [#5920](https://github.com/DOI-USGS/ISIS3/pull/5820)
- Fixed unnecessary un/distortion checks for pixels near the origin. [#5861](https://github.com/DOI-USGS/ISIS3/issues/5861)
- Fixed the isisStartup scripts for users outside of USGS systems. [#5478](https://github.com/DOI-USGS/ISIS3/issues/5478)
- Fixed all Q apps not consistently prioritized projction over camera in various tools [#5896](https://github.com/DOI-USGS/ISIS3/issue/5896)

### Removed
- QT 6 removed MySQL support so MySQL is no longer supported in `isisminer` [#5909](https://github.com/DOI-USGS/ISIS3/pull/5909)
Expand Down
2 changes: 1 addition & 1 deletion isis/src/qisis/objs/CubeViewport/CubeViewport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ namespace Isis {

// Setup a universal ground map
try {
p_groundMap = new UniversalGroundMap(*p_cube);
p_groundMap = new UniversalGroundMap(*p_cube, UniversalGroundMap::ProjectionFirst);
}
catch(IException &) {
}
Expand Down
2 changes: 1 addition & 1 deletion isis/src/qisis/objs/FindTool/FindTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ namespace Isis {
Distance FindTool::distancePerPixel(MdiCubeViewport *viewport,
double lat, double lon) {
// UniversalGroundMaps default to camera priority, so create a new one so that we can use projection if it exists.
std::unique_ptr<UniversalGroundMap> groundMap(new UniversalGroundMap(*(viewport->cube()), UniversalGroundMap::ProjectionFirst));
UniversalGroundMap *groundMap = viewport->universalGroundMap();
Distance viewportResolution;
if (groundMap->Camera() != NULL){
if (groundMap->Camera()->target()->isSky()) {
Expand Down