Unverified Commit c0fded36 authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

kaguyatc2isis invalid BandBin values (#5692)

parent 5f857a1f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ file. Slightly modified the FunctionalTestJigsawBundleXYZ ctest accordingly. Iss
- Fixed PHOTOMET not accepting backplanes [#5281](https://github.com/DOI-USGS/ISIS3/issues/5281)
- Fixed dstripe parallel test failing by converting tests to gtests [#5613](https://github.com/DOI-USGS/ISIS3/issues/5613)
- Fixed autoseed SeedDomain = SampleLine only working for first overlap [#5673](https://github.com/DOI-USGS/ISIS3/issues/5673)
- Fixed kaguyatc2isis invalid BandBin values [#5629](https://github.com/DOI-USGS/ISIS3/issues/5629)

## [8.3.0] - 2024-09-30

+2 −2
Original line number Diff line number Diff line
@@ -284,8 +284,8 @@ namespace Isis {
      // Add the BandBin group
      PvlGroup bandBinGroup("BandBin");
      bandBinGroup += PvlKeyword("FilterName", "BroadBand");
      bandBinGroup += PvlKeyword("Center", "640nm");
      bandBinGroup += PvlKeyword("Width", "420nm");
      bandBinGroup += PvlKeyword("Center", "640", "nanometers");
      bandBinGroup += PvlKeyword("Width", "420", "nanometers");
      outcube->putGroup(bandBinGroup);
    }

+4 −4
Original line number Diff line number Diff line
@@ -77,8 +77,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestDefault) {

  // Bandbin Group
  PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse);
  ASSERT_EQ(bandbin["Center"][0], "640nm");
  ASSERT_EQ(bandbin["Width"][0], "420nm");
  ASSERT_EQ(bandbin["Center"][0], "640");
  ASSERT_EQ(bandbin["Width"][0], "420");

  // Kernels Group
  PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse);
@@ -150,8 +150,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestSpSupport) {

  // Bandbin Group
  PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse);
  ASSERT_EQ(bandbin["Center"][0], "640nm");
  ASSERT_EQ(bandbin["Width"][0], "420nm");
  ASSERT_EQ(bandbin["Center"][0], "640");
  ASSERT_EQ(bandbin["Width"][0], "420");

  // Kernels Group
  PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse);