Skip to content
Snippets Groups Projects
Commit 30b55712 authored by Bas Couwenberg's avatar Bas Couwenberg Committed by Guillaume Pasero
Browse files

BUG 1259: Spelling patch from debian

parent 6ef74581
No related branches found
No related tags found
No related merge requests found
......@@ -146,7 +146,7 @@ private:
}
else
{
otbAppLogFATAL("Unkown output field option : " << this->GetParameterString("outfield"));
otbAppLogFATAL("Unknown output field option : " << this->GetParameterString("outfield"));
}
......
......@@ -104,7 +104,7 @@ private:
" - layer : index specifying from which layer to pick geometries.\n"
" - field : set the field name containing the class.\n"
" - mask : an optional raster mask can be used to discard samples.\n"
" - outrates : allows to output a CSV file that summarizes the sampling rates for each class.\n"
" - outrates : allows outputting a CSV file that summarizes the sampling rates for each class.\n"
"\nAs with the PolygonClassStatistics application, different types of geometry are supported : "
"polygons, lines, points. \nThe behavior of this application is different for each type of geometry :\n"
......@@ -134,7 +134,7 @@ private:
SetParameterDescription("instats","Input file storing statistics (XML format)");
AddParameter(ParameterType_OutputFilename, "outrates", "Output rates");
SetParameterDescription("outrates","Output rates (CSV formated)");
SetParameterDescription("outrates","Output rates (CSV formatted)");
MandatoryOff("outrates");
AddParameter(ParameterType_Choice, "sampler", "Sampler type");
......
......@@ -28,7 +28,7 @@ namespace otb
*
* \brief Periodic sampler for iteration loops
*
* This class allows to do periodic sampling during an iteration loop.
* This class allows doing periodic sampling during an iteration loop.
*
* \ingroup OTBStatistics
*/
......
......@@ -28,7 +28,7 @@ namespace otb
*
* \brief Periodic sampler for iteration loops
*
* This class allows to do periodic sampling during an iteration loop.
* This class allows doing periodic sampling during an iteration loop.
*
* \ingroup OTBStatistics
*/
......
......@@ -28,7 +28,7 @@ namespace otb
*
* \brief Random sampler for iteration loops
*
* This class allows to do random sampling during an iteration loop.
* This class allows doing random sampling during an iteration loop.
* It uses the MersenneTwisterRandomGenerator.
*
* \ingroup OTBStatistics
......
......@@ -36,7 +36,7 @@ WaveletGenerator<TMotherWaveletOperator>
{
std::ostringstream msg;
msg << "The mother wavelet ID " << TMotherWaveletOperator;
msg << " is unkown or has to be implemented...\n";
msg << " is unknown or has to be implemented...\n";
throw itk::ExceptionObject(__FILE__, __LINE__, msg.str().c_str(), ITK_LOCATION);
return "Unknown";
......@@ -49,7 +49,7 @@ WaveletGenerator<TMotherWaveletOperator>
{
std::ostringstream msg;
msg << "The mother wavelet ID " << TMotherWaveletOperator;
msg << " is unkown or has to be implemented...\n";
msg << " is unknown or has to be implemented...\n";
throw itk::ExceptionObject(__FILE__, __LINE__, msg.str().c_str(), ITK_LOCATION);
}
......@@ -60,7 +60,7 @@ WaveletGenerator<TMotherWaveletOperator>
{
std::ostringstream msg;
msg << "The mother wavelet ID " << TMotherWaveletOperator;
msg << " is unkown or has to be implemented (check the txx file)...\n";
msg << " is unknown or has to be implemented (check the txx file)...\n";
throw itk::ExceptionObject(__FILE__, __LINE__, msg.str().c_str(), ITK_LOCATION);
}
......
......@@ -770,7 +770,7 @@ SimpleParallelTiffWriter<TInputImage>
this->ReleaseInputs();
//Reset global shift on input region (box parameter)
//It allows to call multiple update over the writer
//It allows calling multiple updates over the writer
m_ShiftOutputIndex.Fill(0);
// Wait for other processes
......
......@@ -951,7 +951,7 @@ namespace ossimplugins
addMandatory(theProductKwl, prefix, keyImPtX, **itNode, attPixel);
// In TOPSAR products, GCPs are weird (they fall in black lines
// between burst. This code allows to move them to a valid area of
// between burst. This code allows moving them to a valid area of
// the image.
if(theBurstRecords.size()>2)
{
......
......@@ -249,7 +249,7 @@ void ossimSentinel1SarSensorModel::readAnnotationFile(const std::string & annota
gcpRecord.imPt.x = getDoubleFromFirstNode(**itNode, attPixel);
// In TOPSAR products, GCPs are weird (they fall in black lines
// between burst. This code allows to move them to a valid area of
// between burst. This code allows moving them to a valid area of
// the image.
if(theBurstRecords.size()>2)
{
......
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