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

Some more input

parent f117faf4
...@@ -22,9 +22,15 @@ class RegionChooserCommandLineInterface implements Callable<Integer> ...@@ -22,9 +22,15 @@ class RegionChooserCommandLineInterface implements Callable<Integer>
@Override @Override
public Integer call() throws Exception { // your business logic goes here... public Integer call() throws Exception { // your business logic goes here...
for (Path file : citygmls) { System.out.println("Should extract from :");
System.out.println(file); 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; return 0;
} }
......
Markdown is supported
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