Unverified Commit 29f8c1b8 authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

Fixed tc data set IDs (#3830)

parent e3c19b13
Loading
Loading
Loading
Loading
+3 −1
Original line number Original line Diff line number Diff line
@@ -41,12 +41,14 @@ namespace Isis {
        && id != "TC1_Level2B"
        && id != "TC1_Level2B"
        && id != "TC2_Level2B"
        && id != "TC2_Level2B"
        && id != "SLN-L-TC-3-S-LEVEL2B0-V1.0"
        && id != "SLN-L-TC-3-S-LEVEL2B0-V1.0"
        && id != "SLN-L-TC-3-W-LEVEL2B0-V1.0"
        && id != "SLN-L-TC-5-MORNING-MAP-V4.0") {
        && id != "SLN-L-TC-5-MORNING-MAP-V4.0") {
      QString msg = "Input file [" + labelFile + "] does not appear to be " +
      QString msg = "Input file [" + labelFile + "] does not appear to be " +
                    "a supported Kaguya Terrain Camera format. " +
                    "a supported Kaguya Terrain Camera format. " +
                    "DATA_SET_ID is [" + id + "]" +
                    "DATA_SET_ID is [" + id + "]" +
                    "Valid formats include [TC_MAP, TCO_MAP, TC1_Level2B, " +
                    "Valid formats include [TC_MAP, TCO_MAP, TC1_Level2B, " +
                    "SLN-L-TC-3-S-LEVEL2B0-V1.0, SLN-L-TC-5-MORNING-MAP-V4.0]";
                    "SLN-L-TC-3-S-LEVEL2B0-V1.0, SLN-L-TC-3-W-LEVEL2B0-V1.0, " +
		    "SLN-L-TC-5-MORNING-MAP-V4.0]";
      throw IException(IException::Unknown, msg, _FILEINFO_);
      throw IException(IException::Unknown, msg, _FILEINFO_);
    }
    }