Commit bc0f1e69 authored by Eric Duminil's avatar Eric Duminil
Browse files

Some more input

No related merge requests found
Showing with 8 additions and 2 deletions
+8 -2
......@@ -22,9 +22,15 @@ class RegionChooserCommandLineInterface implements Callable<Integer>
@Override
public Integer call() throws Exception { // your business logic goes here...
for (Path file : citygmls) {
System.out.println(file);
System.out.println("Should extract from :");
for (Path input_citygml : citygmls) {
System.out.println(" " + input_citygml);
}
System.out.print("And write to : ");
System.out.println(outputCityGML);
System.out.print("in ");
System.out.println(srsName + " coordinates.");
return 0;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment