Skip to content
Snippets Groups Projects
Commit 7a630b82 authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

Correction de code.

parent 5b9a03cd
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ AtmosphericRadiativeTerms
DataVectorType vect(m_Values.size(), 0);
for (unsigned int nbChannel=0; nbChannel<m_Values.size(); nbChannel++)
{
vect[nbChannel] = m_Values[nbChannel]->GetIntrinsicAtmosphericReflectance();
vect[nbChannel] = m_Values[nbChannel]->GetSphericalAlbedo();
}
return vect;
}
......@@ -250,7 +250,7 @@ AtmosphericRadiativeTerms
DataVectorType vect(m_Values.size(), 0);
for (unsigned int nbChannel=0; nbChannel<m_Values.size(); nbChannel++)
{
vect[nbChannel] = m_Values[nbChannel]->GetIntrinsicAtmosphericReflectance();
vect[nbChannel] = m_Values[nbChannel]->GetTotalGaseousTransmission();
}
return vect;
}
......@@ -261,7 +261,7 @@ AtmosphericRadiativeTerms
DataVectorType vect(m_Values.size(), 0);
for (unsigned int nbChannel=0; nbChannel<m_Values.size(); nbChannel++)
{
vect[nbChannel] = m_Values[nbChannel]->GetIntrinsicAtmosphericReflectance();
vect[nbChannel] = m_Values[nbChannel]->GetDownwardTransmittance();
}
return vect;
}
......@@ -272,7 +272,7 @@ AtmosphericRadiativeTerms
DataVectorType vect(m_Values.size(), 0);
for (unsigned int nbChannel=0; nbChannel<m_Values.size(); nbChannel++)
{
vect[nbChannel] = m_Values[nbChannel]->GetIntrinsicAtmosphericReflectance();
vect[nbChannel] = m_Values[nbChannel]->GetUpwardTransmittance();
}
return vect;
}
......
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