mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 13:23:59 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -13,20 +13,22 @@ DEFINE_string(inputDir, "", "Path to kmls.");
|
||||
|
||||
DEFINE_string(outputDir, "", "Path to converted kmls.");
|
||||
|
||||
DEFINE_int32(vehicleType, 0, "Numeric value of routing::VehicleType enum. "
|
||||
"Pedestrian by default.");
|
||||
DEFINE_int32(vehicleType, 0,
|
||||
"Numeric value of routing::VehicleType enum. "
|
||||
"Pedestrian by default.");
|
||||
|
||||
DEFINE_bool(showHelp, false, "Show help on all flags.");
|
||||
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
gflags::SetUsageMessage("The tool is used to generate more smooth track based on "
|
||||
"waypoints from the kml. The kml has to contain points "
|
||||
"within LineString tag. If the router can't build the route "
|
||||
"than the specific path will be untouched. Multiple kmls into "
|
||||
" the directory are supported.\n\n"
|
||||
"Usage example: "
|
||||
"./track_generator_tool -inputDir=path/to/input/ -outputDir=/path/to/output/");
|
||||
gflags::SetUsageMessage(
|
||||
"The tool is used to generate more smooth track based on "
|
||||
"waypoints from the kml. The kml has to contain points "
|
||||
"within LineString tag. If the router can't build the route "
|
||||
"than the specific path will be untouched. Multiple kmls into "
|
||||
" the directory are supported.\n\n"
|
||||
"Usage example: "
|
||||
"./track_generator_tool -inputDir=path/to/input/ -outputDir=/path/to/output/");
|
||||
|
||||
gflags::ParseCommandLineFlags(&argc, &argv, false /* remove_flags */);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user