Skip to content
Snippets Groups Projects
Unverified Commit 96e07350 authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Qview Sky Image Fixes (#5409)

* Added changelog entry

* Fixes findtool
parent 24817381
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment