diff --git a/Applications/Utils/otbBandMath.cxx b/Applications/Utils/otbBandMath.cxx index 4dbeac35b56f4423bd925927d2ab26bb82e6fd4a..d0c76494d00e03f14c68b6ed8698c38ee956d994 100644 --- a/Applications/Utils/otbBandMath.cxx +++ b/Applications/Utils/otbBandMath.cxx @@ -61,9 +61,6 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine BandMath ${OTB-BIN}/bin" - " --il ${OTB-Data}/oupees_sub_c1.png ${OTB-Data}/oupees_sub_c2.png ${OTB-Data}/oupees_sub.png" - "--out apTvUtBandMathOutput.tif --exp \"cos(im1b1)+im2b1*im3b1-im3b2+ndvi(im3b3, im3b4)\""); AddDocTag("Util"); } @@ -82,6 +79,11 @@ private: AddParameter(ParameterType_String, "exp", "Expression"); SetParameterDescription("exp", "The mathematical expression to apply. \nUse im1b1 for the first band, im1b2 for the second one..."); + + // Doc example parameter settings + SetDocExampleParameterValue("il", "poupees_sub_c1.png poupees_sub_c2.png poupees_sub_png"); + SetDocExampleParameterValue("out", "apTvUtBandMathOutput.tif"); + SetDocExampleParameterValue("exp", "\"cos(im1b1)+im2b1*im3b1-im3b2+ndvi(im3b3, im3b4)\""); } void DoUpdateParameters() diff --git a/Applications/Utils/otbColorMapping.cxx b/Applications/Utils/otbColorMapping.cxx index 84ff6ffeaee9d91e58e8e9ebb074e5ce82737961..f5eb0e400be9c43f51c7e64c22b4debbe2f22523 100644 --- a/Applications/Utils/otbColorMapping.cxx +++ b/Applications/Utils/otbColorMapping.cxx @@ -79,7 +79,6 @@ private: SetDocLimitations("The segmentation method does not support streaming, and thus large images."); SetDocAuthors("OTB-Team"); SetDocSeeAlso("ImageSVMClassifier application"); - SetDocCLExample("otbApplicationLauncherCommandLine ColorMapping --in ${OTBAPP_BASELINE}/clLabeledImageQB123_1.tif --method custom --method.custom.lut ${OTB-Data}/Input/Classification/ColorTable.txt --out clLabeledFancyImageQB123_1.tif"); AddDocTag(Tags::Learning); // Build lut map @@ -165,7 +164,13 @@ private: SetParameterInt("method.segmentation.background", 0); SetMinimumParameterIntValue("method.segmentation.background", 0); SetMaximumParameterIntValue("method.segmentation.background", 255); - } + + // Doc example parameter settings + SetDocExampleParameterValue("in", "clLabeledImageQB123_1.tif"); + SetDocExampleParameterValue("method", "custom"); + SetDocExampleParameterValue("method.custom.lut", "Classification/ColorTable.txt"); + SetDocExampleParameterValue("out", "clLabeledFancyImageQB123_1.tif"); + } void DoUpdateParameters() { diff --git a/Applications/Utils/otbCompareImages.cxx b/Applications/Utils/otbCompareImages.cxx index 25f2e16771c5429d82b86517cdbc81eb8a76b15a..56b3853b113190bd9c86e9a9c2b55dac28f2bf82 100644 --- a/Applications/Utils/otbCompareImages.cxx +++ b/Applications/Utils/otbCompareImages.cxx @@ -57,7 +57,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso("BandMath application, ImageStatistics application"); - SetDocCLExample("otbApplicationLauncherCommandLine CompareImages ${OTB-BIN}/bin --ref.in ${OTB-DATA/Input}/GomaApres.png --ref.channel 1 --meas.in ${OTB-DATA}/GomaAvant.png --meas.channel 2 --roi.startx 20 --roi.starty 30 --roi.sizex 150 --roi.sizey 200"); + AddDocTag("Statistics"); } @@ -115,6 +115,16 @@ private: AddParameter(ParameterType_Float, "psnr", "PSNR"); SetParameterDescription("psnr", "Peak Signal to Noise Ratio value"); SetParameterRole("psnr", Role_Output); + + // Doc example parameter settings + SetDocExampleParameterValue("ref.in", "GomaApres.png"); + SetDocExampleParameterValue("ref.channel", "1"); + SetDocExampleParameterValue("meas.in", "GomaAvant.png"); + SetDocExampleParameterValue("meas.channel", "2"); + SetDocExampleParameterValue("roi.startx", "20"); + SetDocExampleParameterValue("roi.starty", "30"); + SetDocExampleParameterValue("roi.sizex", "150"); + SetDocExampleParameterValue("roi.sizey", "200"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbConcatenateImages.cxx b/Applications/Utils/otbConcatenateImages.cxx index 32bd17f2f6124c1deae9813406d2ec19e8efe730..90cd0019c616db6a8826be51d6922caf46787c30 100644 --- a/Applications/Utils/otbConcatenateImages.cxx +++ b/Applications/Utils/otbConcatenateImages.cxx @@ -64,7 +64,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso("Rescale application, Convert application"); - SetDocCLExample("otbApplicationLauncherCommandLine ConcatenateImages ${OTB-BIN}/bin --in ${OTB-DATA/Input}/poupees_sub_c1.png ${OTB-DATA}/poupees_sub_c2.png ${OTB-DATA}/poupees_sub_c3.png --out otbConcatenateImages.png uchar"); + AddDocTag(Tags::Manip); AddDocTag("Concatenation"); AddDocTag("Multi channel"); @@ -89,6 +89,10 @@ private: AddParameter(ParameterType_RAM, "ram", "Available RAM"); SetDefaultParameterInt("ram", 256); MandatoryOff("ram"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "poupees_sub_c1.png poupees_sub_c2.png poupees_sub_c3.png"); + SetDocExampleParameterValue("out", "otbConcatenateImages.png uchar"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbConcatenateVectorData.cxx b/Applications/Utils/otbConcatenateVectorData.cxx index 9aed2de66b158157aa7a53d6f007c97d730f2fe5..247f9118ffff838c2fd2ffe33bd628b6447bc1ec 100644 --- a/Applications/Utils/otbConcatenateVectorData.cxx +++ b/Applications/Utils/otbConcatenateVectorData.cxx @@ -55,8 +55,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine ConcatenateVectorData ${OTB-BIN}/bin" - " --vd --out ConcatenatedVectorData.shp"); + AddDocTag(Tags::Vector); } @@ -70,6 +69,11 @@ private: SetParameterDescription("vd", "VectorData files to be concatenated in an unique VectorData"); AddParameter(ParameterType_OutputVectorData, "out", "Concatenated VectorData"); + + // Doc example parameter settings + SetDocExampleParameterValue("vd", "waterways.shp france_coastline.shp"); + SetDocExampleParameterValue("out", "ConcatenatedVectorData.shp"); + } diff --git a/Applications/Utils/otbConvert.cxx b/Applications/Utils/otbConvert.cxx index 6ed840098b7984c195c910f5928d1a0a09ac1871..3eee70685330d5c4e7d9116d84d5461522cab7db 100644 --- a/Applications/Utils/otbConvert.cxx +++ b/Applications/Utils/otbConvert.cxx @@ -87,7 +87,6 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso("Rescale application"); - SetDocCLExample("otbApplicationLauncherCommandLine Convert ${OTB-BIN}/bin --in ${OTB-Data}/Input/QB_Toulouse_Ortho_XS.tif --out otbConvertWithScalingOutput.png uchar --type linear"); AddDocTag("Conversion"); AddDocTag("Image Dynamic"); @@ -99,7 +98,7 @@ private: } void DoCreateParameters() - { + { AddParameter(ParameterType_InputImage, "in", "Input image"); SetParameterDescription("in", "Input image"); @@ -116,6 +115,11 @@ private: AddParameter(ParameterType_RAM, "ram", "Available RAM"); SetDefaultParameterInt("ram", 256); MandatoryOff("ram"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "QB_Toulouse_Ortho_XS.tif"); + SetDocExampleParameterValue("out", "otbConvertWithScalingOutput.png uchar"); + SetDocExampleParameterValue("type", "linear"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbDEMConvert.cxx b/Applications/Utils/otbDEMConvert.cxx index 4c8017bbbe7e9687b894e00d71d13069b35f9b40..11de1f0ac41f06eb33c691f45e7df7cf18d1e76b 100644 --- a/Applications/Utils/otbDEMConvert.cxx +++ b/Applications/Utils/otbDEMConvert.cxx @@ -53,8 +53,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine DEMConvert ${OTB-BIN}/bin" - " --in ${OTB-DATA}/Input/QB_MUL_ROI_1000_100.tif --out ${TEMP}/outputDEM.any"); + AddDocTag("Image manipulation"); } @@ -73,6 +72,10 @@ void DoCreateParameters() oss << "The files - Output.geom, Output.omd and Output.ras - will be generated"; SetParameterDescription("out", oss.str()); SetParameterRole("out", Role_Output); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "QB_MUL_ROI_1000_100.tif"); + SetDocExampleParameterValue("out", "outputDEM.any"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbExtractROI.cxx b/Applications/Utils/otbExtractROI.cxx index 02855ae241e3d885bbaadeb4af21292325da2de6..1e83d36b3d56d9672c37c7b0ab1a4b13d1452cdc 100644 --- a/Applications/Utils/otbExtractROI.cxx +++ b/Applications/Utils/otbExtractROI.cxx @@ -58,8 +58,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine ExtractROI ${OTB-BIN}/bin " - "--in ${OTB-Data}/Input/couleurs_extrait.png --out ROIImage.tif --sizex 256"); + AddDocTag(Tags::Manip); } @@ -95,6 +94,11 @@ private: // Channelist Parameters AddParameter(ParameterType_ListView, "cl", "Output Image channels"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "couleurs_extrait.png"); + SetDocExampleParameterValue("sizex", "256"); + SetDocExampleParameterValue("out", "ROIImage.tif"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbKmzExport.cxx b/Applications/Utils/otbKmzExport.cxx index 7aa0d3bd03026e494d56214beec936c793a3c8f2..795881a06b7df2ce11e9f219bc05b5c6146f72c6 100644 --- a/Applications/Utils/otbKmzExport.cxx +++ b/Applications/Utils/otbKmzExport.cxx @@ -51,7 +51,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso("Conversion"); - SetDocCLExample("otbApplicationLauncherCommandLine KmzExport ${OTB-BIN}/bin --in ${OTB-Data}/Input/qb_RoadExtract.img --out otbKmzExport.kmz --logo ${OTB-Data}/Input/cnes.png ${OTB-Data}/Input/otb_big.png"); + AddDocTag("KMZ"); AddDocTag("Export"); } @@ -83,6 +83,12 @@ private: AddParameter(ParameterType_Directory, "dem", "DEM directory"); SetParameterDescription("dem", "Path to the directory that contains elevation information."); MandatoryOff("dem"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "qb_RoadExtract.img"); + SetDocExampleParameterValue("out", "otbKmzExport.kmz"); + SetDocExampleParameterValue("logo", "cnes.png"); + SetDocExampleParameterValue("legend", "otb_big.png"); } diff --git a/Applications/Utils/otbMultiResolutionPyramid.cxx b/Applications/Utils/otbMultiResolutionPyramid.cxx index bac9a0f0ed10d4116f948a3183061b5c75c97d29..803737b2c11a2b86d4b2d3227dfd71c3838381e3 100644 --- a/Applications/Utils/otbMultiResolutionPyramid.cxx +++ b/Applications/Utils/otbMultiResolutionPyramid.cxx @@ -68,9 +68,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample( - "otbApplicationLauncherCommandLine MultiResolutionPyramid ${OTB-BIN}/bin " - "--in ${OTB-Data}/Input/QB_Toulouse_Ortho_XS.tif --out multiResolutionImage.tif --level 1 --sfactor 2 --vfactor 0.6 --fast false"); + AddDocTag("Conversion"); AddDocTag(Tags::Manip); AddDocTag(Tags::Multi); @@ -106,6 +104,14 @@ private: <<" subsampling previous level of pyramid instead of processing the full input."; SetParameterDescription("fast", desc.str()); MandatoryOff("fast"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "QB_Toulouse_Ortho_XS.tif"); + SetDocExampleParameterValue("out", "multiResolutionImage.tif"); + SetDocExampleParameterValue("level", "1"); + SetDocExampleParameterValue("sfactor", "2"); + SetDocExampleParameterValue("vfactor", "0.6"); + SetDocExampleParameterValue("fast", "false"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbOSMDownloader.cxx b/Applications/Utils/otbOSMDownloader.cxx index 1e689347e6aefeb2bc8befbde1f27a748194424a..a1cf260b27a99287f7ab3f73be41dee72f584714 100644 --- a/Applications/Utils/otbOSMDownloader.cxx +++ b/Applications/Utils/otbOSMDownloader.cxx @@ -56,7 +56,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso("Convertion"); - SetDocCLExample("otbApplicationLauncherCommandLine OSMDownloader ${OTB-BIN}/bin --in ${OTB-Data}/Input/qb_RoadExtract.img --out otbOSMDownloader --logo ${OTB-Data}/Input/cnes.png ${OTB-Data}/Input/otb_big.png"); + AddDocTag(Tags::Meta); } @@ -90,7 +90,11 @@ private: oss << "\t\t\t\t ** If not used : Note that the options OSMKey (-key) and Output (-out) become mandatory"; SetParameterDescription("printclasses", oss.str().c_str()); MandatoryOff("printclasses"); - + + // Doc example parameter settings + SetDocExampleParameterValue("support", "ROI_QB_TOULOUSE.TIF"); + SetDocExampleParameterValue("key", "highway"); + SetDocExampleParameterValue("out", "apTvUtOSMDownloader.shp"); } diff --git a/Applications/Utils/otbQuicklook.cxx b/Applications/Utils/otbQuicklook.cxx index 2c6ea1b3deb5882ff326d8fd3bce3fab326dc648..2e6fcac69a0a7b67c84e544cb85aa6a0764e5ab6 100644 --- a/Applications/Utils/otbQuicklook.cxx +++ b/Applications/Utils/otbQuicklook.cxx @@ -60,8 +60,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine Quicklook ${OTB-BIN}/bin" - " --in ${OTB-DATA}/Input/anaglyphInput1.tif --out quicklookImage.tif "); + AddDocTag(Tags::Manip); } @@ -118,6 +117,9 @@ private: SetDefaultParameterInt("rsx", 0); SetDefaultParameterInt("rsy", 0); + // Doc example parameter settings + SetDocExampleParameterValue("in", "anaglyphInput1.tif"); + SetDocExampleParameterValue("out", "quicklookImage.tif"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbReadImageInfo.cxx b/Applications/Utils/otbReadImageInfo.cxx index d8ba8ab0335a9d5a4c91f8df4fa8a71710fba293..38f52f18cdcf850b4d2be4fd29640c90babe8901 100644 --- a/Applications/Utils/otbReadImageInfo.cxx +++ b/Applications/Utils/otbReadImageInfo.cxx @@ -49,8 +49,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine ReadImageInfo ${OTB-BIN}/bin " - "--in ${OTB-Data}/Input/QB_Toulouse_Ortho_XS.tif"); + AddDocTag("Util"); AddDocTag(Tags::Meta); } @@ -62,6 +61,9 @@ private: void DoCreateParameters() { AddParameter(ParameterType_InputImage, "in", "Input Image"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "QB_Toulouse_Ortho_XS.tif"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbRescale.cxx b/Applications/Utils/otbRescale.cxx index 08f0805fd17a3291065a9a67ac1a957229dd1581..935c85bbe94d0267dba93140c52ea56a60156eb8 100644 --- a/Applications/Utils/otbRescale.cxx +++ b/Applications/Utils/otbRescale.cxx @@ -57,8 +57,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine Rescale ${OTB-BIN}/bin" - " --in ${OTB-DATA}/Input/poupees.tif --out rescaledImage.tif --outmin 20 --outmax 150"); + AddDocTag(Tags::Manip); } @@ -85,6 +84,12 @@ private: MandatoryOff("outmin"); MandatoryOff("outmax"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "poupees.tif"); + SetDocExampleParameterValue("out", "rescaledImage.tif"); + SetDocExampleParameterValue("outmin", "20"); + SetDocExampleParameterValue("outmax", "150"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbSmoothing.cxx b/Applications/Utils/otbSmoothing.cxx index f6f78f981807307fbdb276be4f16432a64f6b5d1..ced57f993cb525369b40eecbb0c11e208a1b50be 100644 --- a/Applications/Utils/otbSmoothing.cxx +++ b/Applications/Utils/otbSmoothing.cxx @@ -64,8 +64,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine Smoothing ${OTB-BIN}/bin" - " --in ${OTB-DATA}/Input/poupees.tif --out smoothedImage.tif --type mean"); + AddDocTag(Tags::Filter); } @@ -102,6 +101,11 @@ private: SetDefaultParameterInt("type.anidif.nbiter", 10); SetParameterString("type", "anidif"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "poupees.tif"); + SetDocExampleParameterValue("out", "osmoothedImage.png uchar"); + SetDocExampleParameterValue("type", "mean"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbSplitImage.cxx b/Applications/Utils/otbSplitImage.cxx index 36de3d125712555e01b4cb03dca811de391f9f61..6267f2c42abc9b91d160ad108118879f360278e7 100644 --- a/Applications/Utils/otbSplitImage.cxx +++ b/Applications/Utils/otbSplitImage.cxx @@ -54,12 +54,11 @@ private: SetDescription("Split a N multiband image into N images"); SetDocName("Split Image Application"); - SetDocLongDescription("This application splits a N multiband image into N images."); + SetDocLongDescription("This application splits a N multiband image into N images. The output images filename will be generated from the output one. Thus if the input image has 2 channels, and the user has set ad output outimage.tif, the generated images will be outimage_0.tif and outimage_1.tif"); SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine SplitImage ${OTB-BIN}/bin" - " --in ${OTB-DATA}/Input/poupees_sub.png --out splittedImage.tif"); + AddDocTag(Tags::Manip); } @@ -76,6 +75,10 @@ private: AddParameter(ParameterType_RAM, "ram", "Available RAM"); SetDefaultParameterInt("ram", 256); MandatoryOff("ram"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "poupees_sub.png"); + SetDocExampleParameterValue("out", "splittedImage.tif"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbVectorDataExtractROIApplication.cxx b/Applications/Utils/otbVectorDataExtractROIApplication.cxx index 7dffdd641716125f56247d4fc6b2243d09954a9b..c5c8be4e2ce48ed9e746edb661a9ebf31e7bfbe0 100644 --- a/Applications/Utils/otbVectorDataExtractROIApplication.cxx +++ b/Applications/Utils/otbVectorDataExtractROIApplication.cxx @@ -72,8 +72,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine VectorDataExtractROI ${OTB-BIN}/bin" - " --vd ${OTB-DATA}/Input/franceCoastline.shp --in ${OTB-DATA}/Input/ --out franceCoastline_extract.shp"); + AddDocTag(Tags::Vector); } @@ -98,6 +97,11 @@ private: oss << "or any geotiff processed by the DEM import application"; SetParameterDescription("elev.dem", oss.str()); MandatoryOff("elev.dem"); + + // Doc example parameter settings + SetDocExampleParameterValue("io.in", "QB_Toulouse_Ortho_XS.tif"); + SetDocExampleParameterValue("io.vd", "roads.shp"); + SetDocExampleParameterValue("io.out", "apTvUtVectorDataExtractROIApplicationTest.shp"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbVectorDataSetField.cxx b/Applications/Utils/otbVectorDataSetField.cxx index 7e64ff3bb76092021f220b955bb54cc2c6abaebe..aa3db9de88df240c69b4e29d573c8ebde6308394 100644 --- a/Applications/Utils/otbVectorDataSetField.cxx +++ b/Applications/Utils/otbVectorDataSetField.cxx @@ -62,8 +62,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine VectorDataSetField ${OTB-BIN}/bin " - "--in ${OTB-DATA}/Input/ToulousePoints-examples.shp --out dataOut.shp --fn MyField --fv MyValue"); + AddDocTag(Tags::Vector); } @@ -82,6 +81,12 @@ private: SetParameterDescription("fn", "Field name"); AddParameter(ParameterType_String, "fv", "Value"); SetParameterDescription("fv", "Field value"); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "ToulousePoints-examples.shp"); + SetDocExampleParameterValue("out", "dataOut.shp"); + SetDocExampleParameterValue("fn", "myField"); + SetDocExampleParameterValue("fv", "myValue"); } void DoUpdateParameters() diff --git a/Applications/Utils/otbVectorDataTransform.cxx b/Applications/Utils/otbVectorDataTransform.cxx index cdcb02c396e0d0a9b3e89a2eb36e8b0e6505e774..39b242a6c18c2befff78cd41c617ebbd3151f030 100644 --- a/Applications/Utils/otbVectorDataTransform.cxx +++ b/Applications/Utils/otbVectorDataTransform.cxx @@ -61,9 +61,7 @@ private: SetDocLimitations("None"); SetDocAuthors("OTB-Team"); SetDocSeeAlso(" "); - SetDocCLExample("otbApplicationLauncherCommandLine VectorDataTransform ${OTB-BIN}/bin" - " --in ${OTB-DATA}/ToulouseRoad-examples.shp --out transformVectorData.tif --transform.ro 15"); - + AddDocTag(Tags::Vector); } @@ -100,6 +98,11 @@ private: AddParameter(ParameterType_Float, "transform.scale", "Scale"); SetParameterDescription("transform.scale","The scale to apply"); SetDefaultParameterFloat("transform.scale", 1.); + + // Doc example parameter settings + SetDocExampleParameterValue("in", "ToulouseRoad-examples.shp"); + SetDocExampleParameterValue("out", "transformVectorData.tif"); + SetDocExampleParameterValue("transform.ro", "15"); } void DoUpdateParameters()