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

PROG Updated the mapmos extents app test. References #1550. Fixed my history...

PROG Updated the mapmos extents app test. References #1550. Fixed my history entry for handmos to include the backward compatibility statement. References #1620.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@5767 41f8697f-d340-4b68-9986-7bafba869bb8
parent cc5343c1
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -444,13 +444,15 @@
    </change>
    <change name="Kimberly Oyama" date="2014-02-14">
      Removed the requirement that all four lat/lon extents be entered by the user. The user can
      now enter either min/max lat or min/max lon. The other pair will come from the input cube.
      If the input cube is missing the pair, an error will be thrown telling the user that they
      have to enter them. Fixes #1550.
      now enter as little as none if the input cube Mapping group has the extents. However, if
      the input cube is missing any of the extents, the user must enter them. If any of the 
      extents are missing, an error will be thrown. Fixes #1550.
    </change>
    <change name="Kimberly Oyama and Tammy Becker" date="2014-04-05">
      Updated Documentation. Updated unit test for priority=band. Fixes #1620. References #1623.
      References #1550.
      Updated Documentation. Updated unit test for priority=band. Backward Compatibility Issue:
      The MATCHBANDBIN parameter now defaults to FALSE because the input cubes for handmos are not
      required to have the BandBin group in the cube labels which could impact processing
      scripts/pipelines. Fixes #1620. References #1623. References #1550.
    </change>
  </history>

+12 −17
Original line number Diff line number Diff line
@@ -3,28 +3,23 @@ APPNAME = mapmos
include $(ISISROOT)/make/isismake.tsts

commands:
	$(APPNAME) from=$(INPUT)/ab102401.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosTruthLats.cub \
	$(APPNAME) from=$(INPUT)/ab102401_noMinLat.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosAllExtents.cub \
	  create=true \
	  minlat=10.765 \
	  maxlat=34.445 \
	  null=true > /dev/null;
	$(APPNAME) from=$(INPUT)/ab102401.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosTruthLons.cub \
	  create=true \
	  minlon=219.720 \
	  maxlon=236.190 \
	  null=true > /dev/null;
	$(APPNAME) from=$(INPUT)/copy_ab102401.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosTruthLons.cub \
	$(APPNAME) from=$(INPUT)/ab102401_noMinLat.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosOneExtent.cub \
	  create=true \
	  minlon=219.720 \
	  maxlon=236.190 \
	  null=true >& $(OUTPUT)/errors.txt || true;
	$(APPNAME) from=$(INPUT)/ab102401.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosTruthLons.cub \
	  minlat=10.765 \
	  null=true > /dev/null;
	if [ `$(APPNAME) from=$(INPUT)/ab102401_noMinLat.lev2.cub \
	  mosaic=$(OUTPUT)/mapmosNoExtents.cub \
	  create=true \
	  minlon=219.720 \
	  null=true >& $(OUTPUT)/errors_tmp.txt || true;
	  cat $(OUTPUT)/errors_tmp.txt >> $(OUTPUT)/errors.txt;
	  $(RM) $(OUTPUT)/errors_tmp.txt;
	  null=true >& $(OUTPUT)/error.txt` ]; \
        then \
	  true; \
        fi;