Loading isis/src/base/apps/spiceinit/SpiceClient.cpp +11 −2 Original line number Original line Diff line number Diff line Loading @@ -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"); } } Loading Loading
isis/src/base/apps/spiceinit/SpiceClient.cpp +11 −2 Original line number Original line Diff line number Diff line Loading @@ -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"); } } Loading