Skip to content
Snippets Groups Projects

Fix typo in ossimCosmoSkymedModel

Merged Laurențiu Nicola requested to merge nit-rastercout into develop
Files
2
@@ -268,10 +268,10 @@ namespace ossimplugins
}
}
int nbRasterCout = dataset->GetRasterCount();
int nbRasterCount = dataset->GetRasterCount();
// Metadata for each Band
for (int iBand = 0; iBand < dataset->GetRasterCount(); iBand++)
for (int iBand = 0; iBand < nbRasterCount; iBand++)
{
std::map<std::string, std::string> mapCurrentBand;
Loading