Skip to content
Snippets Groups Projects
Commit 53b89fb4 authored by Rémi Cresson's avatar Rémi Cresson
Browse files

DOC: update application description

parent c62cab4a
No related branches found
No related tags found
No related merge requests found
...@@ -90,12 +90,16 @@ public: ...@@ -90,12 +90,16 @@ public:
// Documentation // Documentation
SetDocName("ZonalStatistics"); SetDocName("ZonalStatistics");
SetDocLongDescription("This application computes zonal statistics from label image, or vector data. " SetDocLongDescription("This application computes zonal statistics from label image, or vector data. "
"The application inputs one input multiband image, and a label input. " "The application inputs one input multiband image, and another input for zones definition. "
"If the label input is a raster, the output statistics are exported in a XML file. If the label " "Zones can be defined with a label image (inzone.labelimage.in) or a vector data layer "
"input is a vector data, the output statistics are exported in a new vector data with statistics " "(inzone.vector.in). The following statistics are computed over each zones: mean, min, max, "
"in the attribute table. The computed statistics are mean, min, max, and standard deviation."); "and standard deviation. Statistics can be exported in a vector layer (if the input zone "
SetDocLimitations("The shapefile must fit in memory"); "definition is a label image, it will be vectorized) or in a XML file");
SetDocAuthors("Remi Cresson"); SetDocLimitations("1) The inzone.vector.in must fit in memory (if \"inzone\" is \"vector\"). 2) The vectorized label "
"image must also fit in memory (if \"out\" is \"vector\"): if not, consider using \"out\" to "
"\"xml\"");
SetDocAuthors("Remi Cresson, Jordi Inglada");
SetDocSeeAlso("ComputeImagesStatistics");
AddDocTag(Tags::Manip); AddDocTag(Tags::Manip);
AddDocTag(Tags::Analysis); AddDocTag(Tags::Analysis);
...@@ -137,7 +141,7 @@ public: ...@@ -137,7 +141,7 @@ public:
SetDocExampleParameterValue("inzone.vector.in", "myvector.shp"); SetDocExampleParameterValue("inzone.vector.in", "myvector.shp");
SetDocExampleParameterValue("out.vector.filename", "myvector_with_stats.shp"); SetDocExampleParameterValue("out.vector.filename", "myvector_with_stats.shp");
SetOfficialDocLink();
} }
void DoUpdateParameters() void DoUpdateParameters()
......
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