Skip to content

Commit

Permalink
Qview Sky Image Fixes (DOI-USGS#5409)
Browse files Browse the repository at this point in the history
* Added changelog entry

* Fixes findtool
  • Loading branch information
acpaquette authored Mar 14, 2024
1 parent 2481738 commit 96e0735
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ release.

### Added
- Added 8 new functions to the Sensor Utility Library: Slant Distance, Target Center Distance, Right Ascension Declination, Local Solar Time, Line Resolution, Sample Resolution, Pixel Resolution, and Solar Longitude.
- Fixed TrackTool, FindTool, and AdvancedTrackTool not reporting RA and DEC for images targeting the Sky. [#5409](https://github.com/DOI-USGS/ISIS3/pull/5409)

## [8.1.0] - 2024-01-08

Expand Down
4 changes: 4 additions & 0 deletions isis/src/qisis/objs/FindTool/FindTool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,10 @@ namespace Isis {
p_lat = activeViewport->camera()->Declination();
p_lon = activeViewport->camera()->RightAscension();
}
else {
p_lat = groundMap->UniversalLatitude();
p_lon = groundMap->UniversalLongitude();
}
}
else {
p_lat = groundMap->UniversalLatitude();
Expand Down

0 comments on commit 96e0735

Please sign in to comment.