Skip to content

Commit 165f72f

Browse files
authored
decaps map.findgroup("MAPPING") (#5920)
1 parent 3c026c0 commit 165f72f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ ctest FunctionalTestJigsawApollo to validate this output. [#5710](https://github
9595
- Fixed `noseam` to use correct temporary files when running [#5878](https://github.com/DOI-USGS/ISIS3/pull/5878)
9696
- Fixed `CubeInfixToPostfix` to safely determine if a known symbol is a function symbol [#5822](https://github.com/DOI-USGS/ISIS3/pull/5822)
9797
- Fixed `BundleObservationSolveSettings` to properly read empty solve setting xmls [#5822](https://github.com/DOI-USGS/ISIS3/pull/5822)
98+
- Fixed `footprintinit` to find mapping group (no caps). [#5920](https://github.com/DOI-USGS/ISIS3/pull/5820)
9899

99100

100101
## [9.0.0] - 09-25-2024

isis/src/base/apps/footprintinit/footprintinit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ namespace Isis {
8787

8888
if (testXY) {
8989
Pvl map(ui.GetFileName("MAP"));
90-
PvlGroup &mapGroup = map.findGroup("MAPPING");
90+
PvlGroup &mapGroup = map.findGroup("Mapping");
9191

9292
// This call adds TargetName, EquatorialRadius and PolarRadius to mapGroup
9393
mapGroup = Target::radiiGroup(*(cube->label()), mapGroup);

0 commit comments

Comments
 (0)