Commit cb182b2e authored by Summer Stapleton's avatar Summer Stapleton Committed by Makayla Shepherd
Browse files

Added NAIF Keywords functionality

parent f5b19539
Loading
Loading
Loading
Loading
+11 −2
Original line number Original line Diff line number Diff line
@@ -489,9 +489,18 @@ namespace Isis {
  PvlObject SpiceClient::naifKeywordsObject() {
  PvlObject SpiceClient::naifKeywordsObject() {
    checkErrors();
    checkErrors();


    PvlObject ob("object");
    QString value = p_response->value("Kernels Label").toString();
    return ob;
    QString decoded(QByteArray::fromHex(value.toUtf8().constData()));


    stringstream pvlStream;
    pvlStream << decoded;

    Pvl labels;
    pvlStream >> labels;

    labels.write("NAIF.txt");

    return labels.findObject("NaifKeywords");
  }
  }