Loading CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -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 Loading isis/src/kaguya/apps/kaguyatc2isis/kaguyatc2isis.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -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); } Loading isis/tests/FunctionalTestsKaguyatc2isis.cpp +4 −4 Original line number Diff line number Diff line Loading @@ -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); Loading Loading @@ -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); Loading Loading
CHANGELOG.md +1 −0 Original line number Diff line number Diff line Loading @@ -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 Loading
isis/src/kaguya/apps/kaguyatc2isis/kaguyatc2isis.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -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); } Loading
isis/tests/FunctionalTestsKaguyatc2isis.cpp +4 −4 Original line number Diff line number Diff line Loading @@ -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); Loading Loading @@ -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); Loading