Skip to content
Snippets Groups Projects
Unverified Commit c0fded36 authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

kaguyatc2isis invalid BandBin values (#5692)

parent 5f857a1f
Branches
No related tags found
No related merge requests found
...@@ -64,6 +64,7 @@ file. Slightly modified the FunctionalTestJigsawBundleXYZ ctest accordingly. Iss ...@@ -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 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 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 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 ## [8.3.0] - 2024-09-30
......
...@@ -284,8 +284,8 @@ namespace Isis { ...@@ -284,8 +284,8 @@ namespace Isis {
// Add the BandBin group // Add the BandBin group
PvlGroup bandBinGroup("BandBin"); PvlGroup bandBinGroup("BandBin");
bandBinGroup += PvlKeyword("FilterName", "BroadBand"); bandBinGroup += PvlKeyword("FilterName", "BroadBand");
bandBinGroup += PvlKeyword("Center", "640nm"); bandBinGroup += PvlKeyword("Center", "640", "nanometers");
bandBinGroup += PvlKeyword("Width", "420nm"); bandBinGroup += PvlKeyword("Width", "420", "nanometers");
outcube->putGroup(bandBinGroup); outcube->putGroup(bandBinGroup);
} }
......
...@@ -77,8 +77,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestDefault) { ...@@ -77,8 +77,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestDefault) {
// Bandbin Group // Bandbin Group
PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse); PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse);
ASSERT_EQ(bandbin["Center"][0], "640nm"); ASSERT_EQ(bandbin["Center"][0], "640");
ASSERT_EQ(bandbin["Width"][0], "420nm"); ASSERT_EQ(bandbin["Width"][0], "420");
// Kernels Group // Kernels Group
PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse); PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse);
...@@ -150,8 +150,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestSpSupport) { ...@@ -150,8 +150,8 @@ TEST(kaguyatc2isisTest, kaguyatc2isisTestSpSupport) {
// Bandbin Group // Bandbin Group
PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse); PvlGroup &bandbin = isisLabel->findGroup("BandBin", Pvl::Traverse);
ASSERT_EQ(bandbin["Center"][0], "640nm"); ASSERT_EQ(bandbin["Center"][0], "640");
ASSERT_EQ(bandbin["Width"][0], "420nm"); ASSERT_EQ(bandbin["Width"][0], "420");
// Kernels Group // Kernels Group
PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse); PvlGroup &kern = isisLabel->findGroup("Kernels", Pvl::Traverse);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment