Unverified Commit 22016b7e authored by Summer Stapleton's avatar Summer Stapleton Committed by GitHub
Browse files

Setting tgocassismos to have tracking turned-on (#2856)

* Adding parameter "tracking=true" to tgocassismos call to automos

* Adding documentation

* Fixing indentation in documentation
parent 32ce1c48
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -209,7 +209,8 @@ void IsisMain() {
    QString toMosaic = ui.GetFileName("TO");
    QString mosaicPriority = ui.GetString("PRIORITY");

    QString parameters = "FROMLIST=" + list + " MOSAIC=" + toMosaic + " PRIORITY=" + mosaicPriority;
    QString parameters = "FROMLIST=" + list + " MOSAIC=" + toMosaic + " PRIORITY=" + mosaicPriority 
                          + " TRACK=TRUE";

    if (QString::compare(ui.GetString("GRANGE"), "USER", Qt::CaseInsensitive) == 0) {
      parameters += " GRANGE=USER";
+15 −6
Original line number Diff line number Diff line
@@ -14,6 +14,11 @@

    A new label group, required by tgocassisrdrgen, called "Mosaic"  is added to the image labels of
    the output cube.  The original label blob is also propagated from the first file in the input list.<br/>
    
    This application will produce two cubes. The first cube (that you set with the "TO" parameter) 
    will be your mosaic. A tracking cube will also be created at the same level with tracking
    information for the original cubes (that you set with the "FROMLIST" parameter). This cube will
    have the same base name as the mosaic, but will end in "_tracking.cub".<br/>
    </p>

<p>
@@ -45,6 +50,10 @@
    <change name="Jeannie Backer" date="2018-08-10">
      Added option to allow user to choose ground range. 
    </change>
    <change name="Summer Stapleton-Greig" date="2019-02-28">
      Added the "tracking=true" parameter to tgocassismos' call to automos resulting in automatic
      tracking cube creation. 
    </change>
  </history>

  <groups>
+1 −0
Original line number Diff line number Diff line
@@ -7,4 +7,5 @@ commands:
	$(APPNAME) fromlist=$(OUTPUT)/mosaic.lis \
		   to=$(OUTPUT)/tgocassismos.cub >& /dev/null;
	catlab from=$(OUTPUT)/tgocassismos.cub to=$(OUTPUT)/tgocassismos.pvl >& /dev/null;	
	catlab from=$(OUTPUT)/tgocassismos_tracking.cub to=$(OUTPUT)/tgocassismos_tracking.pvl >& /dev/null;
	$(RM) $(OUTPUT)/mosaic.lis;
+1 −0
Original line number Diff line number Diff line
@@ -132,4 +132,5 @@ commands:
	$(RM) $(OUTPUT)/nirCassisMosaic.cub;
	$(RM) $(OUTPUT)/panCassisMosaic.cub;
	$(RM) $(OUTPUT)/redCassisMosaic.cub;
	$(RM) $(OUTPUT)/*_tracking*.cub;
	$(MV) $(OUTPUT)/equi.map $(OUTPUT)/equi.pvl;
+1 −1
Original line number Diff line number Diff line
@@ -69,4 +69,4 @@ commands:
	$(RM) $(OUTPUT)/*.lis
	$(RM) $(OUTPUT)/*equi*
	$(RM) $(OUTPUT)/*B1.cub
	$(RM) $(OUTPUT)/*_tracking*
Loading