-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
|