@Command(name="region_chooser",mixinStandardHelpOptions=true,description="Extracts a region from one or more citygmls.",sortOptions=false,versionProvider=GetVersion.class)
// Extracts a region from one or more citygmls, or calculates the convex hull.
// -i, --input=input.gml[,input.gml...]
// Citygml files to extract from
// -o, --output=output.gml Output file
// -e, --epsg=31467 EPSG id for coordinate reference system.
// Will use the one from input.gml if unspecified.
// -l, --local Are WKT coordinates in local CRS?
// Coordinates are in WGS84 if unspecified.
// -w, --wkt=polygon.wkt File containing WKT polygon, or - for stdin
// --get-hull Calculate the convex hull of the input CityGML files
// -h, --help Show this help message and exit.
// -V, --version Print version information and exit.
@Command(name="region_chooser",mixinStandardHelpOptions=true,description="Extracts a region from one or more citygmls, or calculates the convex hull.",sortOptions=false,versionProvider=GetVersion.class)
classRegionChooserCLIimplementsCallable<Integer>
{
@Spec
...
...
@@ -53,8 +50,7 @@ class RegionChooserCLI implements Callable<Integer>
"--input"},required=true,split=",",description="Citygml files to extract from",paramLabel="input.gml")