Skip to content
Snippets Groups Projects
Commit 099eec0f authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

ENH: avoid newlines at end of app description

parent 90eea802
No related branches found
No related tags found
1 merge request!53Resolve "add Wrapper/QGIS to generate qgis descriptors for processing plugin"
......@@ -59,9 +59,7 @@ private:
{
SetName( "BandMathX" );
SetDescription(
"This application performs mathematical operations on several multiband images.\n"
);
SetDescription("This application performs mathematical operations on several multiband images.");
SetDocName( "Band Math X" );
......
......@@ -90,12 +90,9 @@ private:
void DoInit() override
{
SetName("OrthoRectification");
std::ostringstream oss;
oss << "This application allows ortho-rectifying optical and radar images from supported sensors." << std::endl;
SetDescription(oss.str());
// Documentation
SetDescription("This application allows ortho-rectifying optical and radar images from supported sensors.");
SetDocName("Ortho-rectification");
oss.str("");
std::ostringstream oss;
oss<<"This application uses inverse sensor modelling combined with a choice of interpolation functions to resample a sensor geometry image into a ground geometry regular grid. ";
oss<<"The ground geometry regular grid is defined with respect to a map projection (see map parameter). The application offers several modes to estimate the output grid parameters (origin and ground sampling distance), including automatic estimation of image size, ground sampling distance, or both, from image metadata, user-defined ROI corners, or another ortho-image.";
oss<<"A digital Elevation Model along with a geoid file can be specified to account for terrain deformations.";
......
......@@ -63,13 +63,9 @@ private:
void DoInit() override
{
SetName("VectorDataReprojection");
std::ostringstream oss;
oss << "Reproject a vector data using support image projection reference"
", or a user specified map projection" << std::endl;
SetDescription(oss.str());
// Documentation
SetDescription("Reproject a vector data using support image projection reference, or a user specified map projection");
SetDocName("Vector Data reprojection");
oss.str("");
std::ostringstream oss;
oss <<" This application allows reprojecting a vector data using support image projection reference"
", or a user given map projection." << std::endl;
oss <<" If given, image keywordlist can be added to reprojected vectordata.";
......
......@@ -48,7 +48,7 @@ private:
void DoInit() override
{
SetName("SARCalibration");
SetDescription("Perform radiometric calibration of SAR images. Following sensors are supported: TerraSAR-X, Sentinel1 and Radarsat-2.Both Single Look Complex(SLC) and detected products are supported as input.\n");
SetDescription("Perform radiometric calibration of SAR images. Following sensors are supported: TerraSAR-X, Sentinel1 and Radarsat-2.Both Single Look Complex(SLC) and detected products are supported as input.");
// Documentation
SetDocName("SAR Radiometric calibration");
......
......@@ -47,7 +47,7 @@ private:
void DoInit() override
{
SetName("SARDeburst");
SetDescription("This application performs deburst of Sentinel1 IW SLC images by removing redundant lines.\n");
SetDescription("This application performs deburst of Sentinel1 IW SLC images by removing redundant lines.");
// Documentation
SetDocName("SAR Deburst");
......
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