Unverified Commit cb1a5e27 authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

Lrowac2isis App and Test Conversion (#4322)

* Lrowac2isis Tests

* Lrowac2isis Test Conversion

* Fixed segfault issues with history.

* Fixes lro_module_test Error

* Whitespace correction.

* Addressed PR feedback.

* Lrowac2isis conversions.

* Updates to tests

* Revisions to lrowac2isis tests and app.
parent 764c45bd
Loading
Loading
Loading
Loading
+845 −0

File added.

Preview size limit exceeded, changes collapsed.

+17 −0
Original line number Diff line number Diff line
#ifndef lrowac2isis_h
#define lrowac2isis_h

/** This is free and unencumbered software released into the public domain.
The authors of ISIS do not claim copyright on the contents of this file.
For more details about the LICENSE terms and the AUTHORS, you will
find files of those names at the top level of this repository. **/

/* SPDX-License-Identifier: CC0-1.0 */

#include "UserInterface.h"

namespace Isis{
  extern void lrowac2isis(UserInterface &ui);
}

#endif
+3 −823

File changed.

Preview size limit exceeded, changes collapsed.

+0 −4
Original line number Diff line number Diff line
BLANKS = "%-6s"    
LENGTH = "%-40s"

include $(ISISROOT)/make/isismake.tststree
+0 −17
Original line number Diff line number Diff line
APPNAME = lrowac2isis

include $(ISISROOT)/make/isismake.tsts

commands:
	$(APPNAME) FROM=$(INPUT)/wac0000a1c4.img \
	  TO=$(OUTPUT)/out.cub > /dev/null;
	catlab FROM=$(OUTPUT)/out.vis.even.cub \
	  > $(OUTPUT)/out.vis.even.pvl > /dev/null;
	crop FROM=$(OUTPUT)/out.vis.even.cub \
	  to=$(OUTPUT)/small.even.cub > /dev/null;
	$(RM) $(OUTPUT)/out.vis.even.cub > /dev/null;
	crop FROM=$(OUTPUT)/out.vis.odd.cub \
	  to=$(OUTPUT)/small.odd.cub > /dev/null;
	catlab FROM=$(OUTPUT)/out.vis.odd.cub \
	  > $(OUTPUT)/out.vis.odd.pvl > /dev/null;
	$(RM) $(OUTPUT)/out.vis.odd.cub > /dev/null;
Loading