Commit cc5343c1 authored by Kim Oyama's avatar Kim Oyama
Browse files

Updated Documentation for automos, mapmos, and handmos. In mapmos, updated...

Updated Documentation for automos, mapmos, and handmos. In mapmos, updated unit test for priority=band. In ProcessMosaic, updated the GetBandIndex() method to return the same number when you use the band number or band name. For example, if band 3 is the emission angle, GetBandIndex() should return 3 whether you enter 3 or emission angle. Modified BandPriorityWithNoTracking() so valid data is always placed on top of the mosaic regardless of the placement criteria (priority=band). The only way to place special or null pixels is to check those options in mapmos or automos. Fixes #1620. Fixes #1623. Fixes #1617. References #1550.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@5766 41f8697f-d340-4b68-9986-7bafba869bb8
parent aa03f636
Loading
Loading
Loading
Loading
+589 −229

File changed.

Preview size limit exceeded, changes collapsed.

+435 −217

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -21,5 +21,5 @@ commands:
	  outsample=5 \
	  outline=5 \
	  outband=1 \
	  matchbandbin=false 2>> $(OUTPUT)/errors.txt > /dev/null;\
	  matchbandbin=false >& $(OUTPUT)/errors.txt > /dev/null;\
	$(RM) $(OUTPUT)/average.cub;
+4 −2
Original line number Diff line number Diff line
#include "Isis.h"

#include <QDebug>

#include "ProcessMapMosaic.h"
#include "PvlGroup.h"

@@ -24,8 +27,7 @@ void IsisMain() {
  // Gets the input file along with attributes
  QString sInputFile = ui.GetAsString("FROM");

  ProcessMosaic::ImageOverlay overlay = ProcessMosaic::StringToOverlay(
      ui.GetString("PRIORITY"));
  ProcessMosaic::ImageOverlay overlay = ProcessMosaic::StringToOverlay( ui.GetString("PRIORITY") );

  if (overlay == ProcessMapMosaic::UseBandPlacementCriteria) {
    if(ui.GetString("TYPE") == "BANDNUMBER") {
+516 −258

File changed.

Preview size limit exceeded, changes collapsed.

Loading