Loading .gitignore +11 −10 Original line number Diff line number Diff line Loading @@ -7,7 +7,10 @@ # Unignore all dirs !*/ # Unignore Makefiles, and TestPreferences !Makefile !TestPreferences !*/3rdParty/Makefile *.cub *.o Loading @@ -18,26 +21,24 @@ moc_* *.pb.* *.lbl *.img !TestPreferences print.prt *.kate-swp object_script.*.Release object_script.*.Debug *_plugin_import.cpp *.moc ui_*.h *html */3rdParty/* !*/3rdParty/Makefile # ignore all files created by squish coco *csmes *csexe */inc/* print.prt */3rdParty/* */inc/* */bin/* */lib/* */tsts/*/input/* */tsts/*/truth/* */tsts/*/output/* README.md 0 → 100644 +2 −0 Original line number Diff line number Diff line # ISIS3 Integrated Software for Imagers and Spectrometers ISIS3 public release site isis/make/config.linux-x86_64 +3 −0 Original line number Diff line number Diff line Loading @@ -526,5 +526,8 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtbb*.so*" # Add the Boost libraries THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libboost*.so*" # Add srtp deps (Qt5WebEngine deps) -- see #5365 THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libsrtp*.so*" # Plugins THIRDPARTYPLUGINS += "$(ISIS3LOCAL)/plugins/" isis/make/config.linux-x86_64_Fedora25 +4 −1 Original line number Diff line number Diff line Loading @@ -479,7 +479,6 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libsuperlu*.so" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libsuitesparseconfig.so" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/liblapack.so" THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libblas*.so*" THIRDPARTYLIBS += "$(ISIS3ALTSYSLIB)/libgfortran.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libxerces-c*.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libgeotiff*.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtiff*.so*" Loading Loading @@ -533,5 +532,9 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtbb*.so*" # Add the Boost libraries THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libboost*.so*" # Add and patch the gfortran's rpath to $ORIGIN (so it can find its quadmath dependency) -- #4610 PATCHLIBS += "$(ISIS3ALTSYSLIB)/libgfortran.so*" THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libquadmath*.so*" # Plugins THIRDPARTYPLUGINS += "$(ISIS3LOCAL)/plugins/" isis/src/base/apps/campt/campt.cpp +29 −24 Original line number Diff line number Diff line Loading @@ -173,6 +173,11 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { prog.CheckStatus(); point = camPoints[p]; // Remove units on look direction vectors point -> findKeyword("LookDirectionBodyFixed").setUnits(""); point -> findKeyword("LookDirectionJ2000").setUnits(""); point -> findKeyword("LookDirectionCamera").setUnits(""); // write to output file if (ui.WasEntered("TO")) { // Write the pvl group out to the file Loading @@ -189,7 +194,6 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { temp.write(outFile); } } // Create a flatfile from PVL data // The flatfile is comma delimited and can be imported into Excel else { Loading Loading @@ -252,6 +256,7 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { throw IException(IException::User, msg, _FILEINFO_); } } // we still want to output the results Application::Log((*point)); delete point; Loading Loading
.gitignore +11 −10 Original line number Diff line number Diff line Loading @@ -7,7 +7,10 @@ # Unignore all dirs !*/ # Unignore Makefiles, and TestPreferences !Makefile !TestPreferences !*/3rdParty/Makefile *.cub *.o Loading @@ -18,26 +21,24 @@ moc_* *.pb.* *.lbl *.img !TestPreferences print.prt *.kate-swp object_script.*.Release object_script.*.Debug *_plugin_import.cpp *.moc ui_*.h *html */3rdParty/* !*/3rdParty/Makefile # ignore all files created by squish coco *csmes *csexe */inc/* print.prt */3rdParty/* */inc/* */bin/* */lib/* */tsts/*/input/* */tsts/*/truth/* */tsts/*/output/*
README.md 0 → 100644 +2 −0 Original line number Diff line number Diff line # ISIS3 Integrated Software for Imagers and Spectrometers ISIS3 public release site
isis/make/config.linux-x86_64 +3 −0 Original line number Diff line number Diff line Loading @@ -526,5 +526,8 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtbb*.so*" # Add the Boost libraries THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libboost*.so*" # Add srtp deps (Qt5WebEngine deps) -- see #5365 THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libsrtp*.so*" # Plugins THIRDPARTYPLUGINS += "$(ISIS3LOCAL)/plugins/"
isis/make/config.linux-x86_64_Fedora25 +4 −1 Original line number Diff line number Diff line Loading @@ -479,7 +479,6 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libsuperlu*.so" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libsuitesparseconfig.so" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/liblapack.so" THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libblas*.so*" THIRDPARTYLIBS += "$(ISIS3ALTSYSLIB)/libgfortran.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libxerces-c*.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libgeotiff*.so*" THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtiff*.so*" Loading Loading @@ -533,5 +532,9 @@ THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libtbb*.so*" # Add the Boost libraries THIRDPARTYLIBS += "$(ISIS3LOCAL)/lib/libboost*.so*" # Add and patch the gfortran's rpath to $ORIGIN (so it can find its quadmath dependency) -- #4610 PATCHLIBS += "$(ISIS3ALTSYSLIB)/libgfortran.so*" THIRDPARTYLIBS += "$(ISIS3SYSLIB)/libquadmath*.so*" # Plugins THIRDPARTYPLUGINS += "$(ISIS3LOCAL)/plugins/"
isis/src/base/apps/campt/campt.cpp +29 −24 Original line number Diff line number Diff line Loading @@ -173,6 +173,11 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { prog.CheckStatus(); point = camPoints[p]; // Remove units on look direction vectors point -> findKeyword("LookDirectionBodyFixed").setUnits(""); point -> findKeyword("LookDirectionJ2000").setUnits(""); point -> findKeyword("LookDirectionCamera").setUnits(""); // write to output file if (ui.WasEntered("TO")) { // Write the pvl group out to the file Loading @@ -189,7 +194,6 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { temp.write(outFile); } } // Create a flatfile from PVL data // The flatfile is comma delimited and can be imported into Excel else { Loading Loading @@ -252,6 +256,7 @@ void writePoints(const UserInterface &ui, QList<PvlGroup*> camPoints) { throw IException(IException::User, msg, _FILEINFO_); } } // we still want to output the results Application::Log((*point)); delete point; Loading