Skip to content

Commit

Permalink
Merge branch 'DOI-USGS:dev' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
chkim-usgs authored Mar 18, 2024
2 parents a7f0c02 + 96e0735 commit cc4dcff
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 cc4dcff

Please sign in to comment.