diff --git a/Utils/otbKmzExport.cxx b/Utils/otbKmzExport.cxx index 123fbf4d2ce1a2ab54f4ad2b77c9827d90f4cd27..e6753b43571f05d53fa9d770e2473156da28f9f7 100644 --- a/Utils/otbKmzExport.cxx +++ b/Utils/otbKmzExport.cxx @@ -30,10 +30,14 @@ int KmzExport::Describe(ApplicationDescriptor* descriptor) descriptor->SetName("KmzExport"); descriptor->SetDescription("Export the input image as Kmz"); descriptor->AddInputImage(); - descriptor->AddOption("OutputProductName", "Output Kmz product", "kmz", 1, true, ApplicationDescriptor::InputImage); - descriptor->AddOption("TileSize", "Set the size of the tiles", "s", 1, false, ApplicationDescriptor::Integer); - descriptor->AddOption("LogoImage", "Add a logo to the final Kmz", "lo", 1, false, ApplicationDescriptor::FileName); - descriptor->AddOption("LegendImage", "Add a legend to the image exported", "le", 1, false, ApplicationDescriptor::FileName); + descriptor->AddOption("OutputProductName", "Output Kmz product", "kmz", 1, true, + ApplicationDescriptor::InputImage); + descriptor->AddOption("TileSize", "Set the size of the tiles", "s", 1, false, + ApplicationDescriptor::Integer); + descriptor->AddOption("LogoImage", "Add a logo to the final Kmz", "lo", 1, false, + ApplicationDescriptor::FileName); + descriptor->AddOption("LegendImage", "Add a legend to the image exported", "le", 1, + false, ApplicationDescriptor::FileName); return EXIT_SUCCESS; }