Unverified Commit 667dea32 authored by kledmundson's avatar kledmundson Committed by GitHub
Browse files

The cneteditor app has been modified to display & edit point coordinates and a...


The cneteditor app has been modified to display & edit point coordinates and a priori sigmas in both lat/lon/radius and XYZ format (#5423)

* New routines to support jigsaw xyz mode

These routines are new. They support the rectangular (XYZ) solution mode for jigsaw in additional applications like cneteditor and ipce.

Signed-off-by: default avatarKris J. Becker <kbecker@orex.lpl.arizona.edu>

* Additional modifications to support cneteditor display/edit of point coordinates and sigmas in XYZ format.

Signed-off-by: default avatarKris J. Becker <kbecker@orex.lpl.arizona.edu>

* cneteditor modificiations

cneteditor - Modifications to display other (body-fixed) fields. Made by K. Edmundson.

Signed-off-by: default avatarKris J. Becker <kbecker@orex.lpl.arizona.edu>

* Renamed APriori X,Y, and Z and APriori XSigma, YSigma, and ZSigma Filter files to be consistent with their counterparts for latitude, longitude, and radius.

* Additional modifications supporting cneteditor display/edit/filtering of point coordinates and sigmas in either lat/lon/radius or XYZ formats. Documentation has been updated accordingly.

---------

Signed-off-by: default avatarKris J. Becker <kbecker@orex.lpl.arizona.edu>
Co-authored-by: default avatarKris J. Becker <kbecker@orex.lpl.arizona.edu>
parent 256aaa5c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -73,6 +73,10 @@ release.
- Added new option in `ctxcal` to use monthly computed flatfield files for "Frown" removal in CTX images. [#5338](https://github.com/DOI-USGS/ISIS3/pull/5338)
- CSMCamera can now read and use the body rotation from ALE produced ISDs [#5072](https://github.com/DOI-USGS/ISIS3/pull/5072)
- CSMSkyMap added to CSMCamera for use with local rover projections in ISIS [#5072](https://github.com/DOI-USGS/ISIS3/pull/5072)

- Cneteditor can now display point coordinates and sigmas in either lat/lon/radius or XYZ
format. A priori coordinate sigmas can now be edited in both formats. New filters have been implemented for coordinates and sigmas in XYZ. [#5421](https://github.com/DOI-USGS/ISIS3/issues/5421)

- Added new Hayabusa2 translation for `SpacecraftName` to accept `HAYABUSA2` [#5395](https://github.com/DOI-USGS/ISIS3/issues/5395)
- Added ALLOWERROR parameter to campt [#5393](https://github.com/DOI-USGS/ISIS3/pull/5393)
- OSIRIS-REx Tagcams instrument support, tests, and test data added [#5424](https://github.com/DOI-USGS/ISIS3/issues/5424)
+5.06 KiB
Loading image diff...
+5.12 KiB
Loading image diff...
+2 −0
Original line number Diff line number Diff line
@@ -350,6 +350,8 @@ namespace Isis {

    menuBar()->addMenu("&Tables");

    menuBar()->addMenu("&Coordinate Display");

    helpMenu = menuBar()->addMenu("&Help");
  }

+2 −0
Original line number Diff line number Diff line
@@ -43,6 +43,8 @@ namespace Isis {
   *   @history 2017-09-19 Tracie Sucharski - Fixed bug introduced from last changes which caused a
   *                           seg fault when saving a control net.  In ::networkLoaded, cnet
   *                           (member variable) was deleted.
   *   @history 2019-11-22 Ken Edmundson - Added coordinate display options to menubar in
   *                           CreateMenus() method.
   */
  class CnetEditorWindow : public QMainWindow {
      Q_OBJECT
Loading