Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mapmos test #4175

Merged
merged 8 commits into from
Dec 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
116 changes: 14 additions & 102 deletions isis/src/base/apps/mapmos/main.cpp
Original file line number Diff line number Diff line change
@@ -1,116 +1,28 @@
#include "Isis.h"

#include <QDebug>
#include "Application.h"
#include "Process.h"
#include "UserInterface.h"

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

using namespace std;
using namespace Isis;

void IsisMain() {
// Get the user interface
UserInterface &ui = Application::GetUserInterface();

ProcessMapMosaic m;

// Get the MatchBandBin Flag
m.SetBandBinMatch(ui.GetBoolean("MATCHBANDBIN"));

// Get the MatchDEM Flag
m.SetMatchDEM(ui.GetBoolean("MATCHDEM"));

// Get the track flag
bool bTrack = ui.GetBoolean("TRACK");
m.SetTrackFlag(bTrack);

// Gets the input file along with attributes
QString sInputFile = ui.GetAsString("FROM");

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

if (overlay == ProcessMapMosaic::UseBandPlacementCriteria) {
if(ui.GetString("TYPE") == "BANDNUMBER") {
m.SetBandNumber(ui.GetInteger("NUMBER"));
}
else {
// Key name & value
m.SetBandKeyword(ui.GetString("KEYNAME"), ui.GetString("KEYVALUE"));
}
// Band Criteria
m.SetBandUseMaxValue( (ui.GetString("CRITERIA") == "GREATER") );
}

// Priority
m.SetImageOverlay(overlay);

// Get the output projection set up properly
if(ui.GetBoolean("CREATE")) {
Cube inCube;
inCube.open(ui.GetFileName("FROM"));

// Set the create flag
m.SetCreateFlag(true);

// Use the input projection as a starting point for the mosaic
PvlGroup mapGroup = inCube.label()->findGroup("Mapping", Pvl::Traverse);
inCube.close();

if ( ui.WasEntered("MINLAT") ) {
mapGroup.addKeyword(PvlKeyword( "MinimumLatitude", toString( ui.GetDouble("MINLAT") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MAXLAT") ) {
mapGroup.addKeyword(PvlKeyword( "MaximumLatitude", toString( ui.GetDouble("MAXLAT") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MINLON") ) {
mapGroup.addKeyword(PvlKeyword( "MinimumLongitude", toString( ui.GetDouble("MINLON") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MAXLON") ) {
mapGroup.addKeyword(PvlKeyword( "MaximumLongitude", toString( ui.GetDouble("MAXLON") ) ),
Pvl::Replace);
}
//check to make sure they're all there. If not, throw error, need to enter all.
if (!mapGroup.hasKeyword("MinimumLongitude") || !mapGroup.hasKeyword("MaximumLongitude") ||
!mapGroup.hasKeyword("MinimumLatitude") || !mapGroup.hasKeyword("MaximumLatitude") ) {
QString msg = "One of the extents is missing. Please input all extents.";
throw IException(IException::User, msg, _FILEINFO_);
}

CubeAttributeOutput oAtt = ui.GetOutputAttribute("MOSAIC");
m.SetOutputCube(sInputFile, mapGroup, oAtt, ui.GetFileName("MOSAIC"));
}
else {
m.SetOutputCube(ui.GetFileName("MOSAIC"));
}


m.SetHighSaturationFlag(ui.GetBoolean("HIGHSATURATION"));
m.SetLowSaturationFlag(ui.GetBoolean("LOWSATURATION"));
m.SetNullFlag(ui.GetBoolean("NULL"));

// Start Process
if(!m.StartProcess(sInputFile)) {
// Logs the cube if it falls outside of the given mosaic
PvlGroup outsiders("Outside");
outsiders += PvlKeyword("File", ui.GetFileName("FROM"));
Application::Log(outsiders);
UserInterface &ui = Application::GetUserInterface();
Pvl appLog;
try {
mapmos(ui, &appLog);
}
else {
// Logs the input file location in the mosaic
for (int i = 0; i < m.imagePositions().groups(); i++) {
Application::Log(m.imagePositions().group(i));
catch (...) {
for (auto grpIt = appLog.beginGroup(); grpIt!= appLog.endGroup(); grpIt++) {
Application::Log(*grpIt);
}
throw;
}


if(bTrack != m.GetTrackFlag()) {
ui.Clear("TRACK");
ui.PutBoolean("TRACK", m.GetTrackFlag());
for (auto grpIt = appLog.beginGroup(); grpIt!= appLog.endGroup(); grpIt++) {
Application::Log(*grpIt);
}

m.EndProcess();
}

121 changes: 121 additions & 0 deletions isis/src/base/apps/mapmos/mapmos.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
#include "mapmos.h"

#include <QDebug>

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

using namespace std;
using namespace Isis;

namespace Isis {

void mapmos(UserInterface &ui, Pvl *log) {
Cube *inCube = new Cube( ui.GetFileName("FROM"), "r");
mapmos(inCube, ui, log);
}


void mapmos(Cube *inCube, UserInterface &ui, Pvl *log) {
// Get the user interface
ProcessMapMosaic m;

// Get the MatchBandBin Flag
m.SetBandBinMatch(ui.GetBoolean("MATCHBANDBIN"));

// Get the MatchDEM Flag
m.SetMatchDEM(ui.GetBoolean("MATCHDEM"));

// Get the track flag
bool bTrack = ui.GetBoolean("TRACK");
m.SetTrackFlag(bTrack);

// Gets the input file along with attributes
QString sInputFile = inCube->fileName();

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

if (overlay == ProcessMosaic::UseBandPlacementCriteria) {
if(ui.GetString("TYPE") == "BANDNUMBER") {
m.SetBandNumber(ui.GetInteger("NUMBER"));
}
else {
// Key name & value
m.SetBandKeyword(ui.GetString("KEYNAME"), ui.GetString("KEYVALUE"));
}
// Band Criteria
m.SetBandUseMaxValue( (ui.GetString("CRITERIA") == "GREATER") );
}

// Priority
m.SetImageOverlay(overlay);

// Get the output projection set up properly
if(ui.GetBoolean("CREATE")) {

// Set the create flag
m.SetCreateFlag(true);

// Use the input projection as a starting point for the mosaic
PvlGroup mapGroup = inCube->label()->findGroup("Mapping", Pvl::Traverse);
inCube->close();

if ( ui.WasEntered("MINLAT") ) {
mapGroup.addKeyword(PvlKeyword( "MinimumLatitude", toString( ui.GetDouble("MINLAT") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MAXLAT") ) {
mapGroup.addKeyword(PvlKeyword( "MaximumLatitude", toString( ui.GetDouble("MAXLAT") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MINLON") ) {
mapGroup.addKeyword(PvlKeyword( "MinimumLongitude", toString( ui.GetDouble("MINLON") ) ),
Pvl::Replace);
}
if ( ui.WasEntered("MAXLON") ) {
mapGroup.addKeyword(PvlKeyword( "MaximumLongitude", toString( ui.GetDouble("MAXLON") ) ),
Pvl::Replace);
}
//check to make sure they're all there. If not, throw error, need to enter all.
if (!mapGroup.hasKeyword("MinimumLongitude") || !mapGroup.hasKeyword("MaximumLongitude") ||
!mapGroup.hasKeyword("MinimumLatitude") || !mapGroup.hasKeyword("MaximumLatitude") ) {
QString msg = "One of the extents is missing. Please input all extents.";
throw IException(IException::User, msg, _FILEINFO_);
}

CubeAttributeOutput oAtt = ui.GetOutputAttribute("MOSAIC");
m.SetOutputCube(sInputFile, mapGroup, oAtt, ui.GetFileName("MOSAIC"));
}
else {
m.SetOutputCube(ui.GetFileName("MOSAIC"));
}


m.SetHighSaturationFlag(ui.GetBoolean("HIGHSATURATION"));
m.SetLowSaturationFlag(ui.GetBoolean("LOWSATURATION"));
m.SetNullFlag(ui.GetBoolean("NULL"));

// Start Process
if(!m.StartProcess(sInputFile)) {
// Logs the cube if it falls outside of the given mosaic
PvlGroup outsiders("Outside");
outsiders += PvlKeyword("File", sInputFile);
log->addGroup(outsiders);
}
else {
// Logs the input file location in the mosaic
for (int i = 0; i < m.imagePositions().groups(); i++) {
log->addGroup(m.imagePositions().group(i));
}
}


if(bTrack != m.GetTrackFlag()) {
ui.Clear("TRACK");
ui.PutBoolean("TRACK", m.GetTrackFlag());
}

m.EndProcess();
}

}
13 changes: 13 additions & 0 deletions isis/src/base/apps/mapmos/mapmos.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#ifndef mapmos_h
#define mapmos_h

#include "UserInterface.h"
#include "Pvl.h"
#include "Cube.h"

namespace Isis {
extern void mapmos( UserInterface &ui, Pvl *log );
extern void mapmos( Cube *inCube, UserInterface &ui, Pvl *log );
}

#endif
8 changes: 0 additions & 8 deletions isis/src/base/apps/mapmos/tsts/720deg/Makefile

This file was deleted.

4 changes: 0 additions & 4 deletions isis/src/base/apps/mapmos/tsts/Makefile

This file was deleted.

26 changes: 0 additions & 26 deletions isis/src/base/apps/mapmos/tsts/applog/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions isis/src/base/apps/mapmos/tsts/average/Makefile

This file was deleted.

19 changes: 0 additions & 19 deletions isis/src/base/apps/mapmos/tsts/band/Makefile

This file was deleted.

25 changes: 0 additions & 25 deletions isis/src/base/apps/mapmos/tsts/extents/Makefile

This file was deleted.

28 changes: 0 additions & 28 deletions isis/src/base/apps/mapmos/tsts/map/Makefile

This file was deleted.

Loading