Skip to content
Snippets Groups Projects
Commit 2d88c79d authored by Christophe Palmann's avatar Christophe Palmann
Browse files

ENH: bandmathx app

parent a3ccb817
No related branches found
No related tags found
No related merge requests found
...@@ -210,12 +210,9 @@ private: ...@@ -210,12 +210,9 @@ private:
if ( IsParameterEnabled("exp") ) if ( IsParameterEnabled("exp") )
{ {
std::vector<std::string> stringList = GetParameterStringList("exp"); std::string string = GetParameterString("exp");
for(int s=0; s<stringList.size(); s++) otbAppLogINFO( << string << std::endl );
{ m_Filter->SetExpression(string);
otbAppLogINFO( << stringList[s] << std::endl );
m_Filter->SetExpression(stringList[s]);
}
} }
if ( IsParameterEnabled("incontext") ) if ( IsParameterEnabled("incontext") )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment