Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Eric Duminil
RegionChooser
Commits
bc0f1e69
Commit
bc0f1e69
authored
2 years ago
by
Eric Duminil
Browse files
Options
Download
Email Patches
Plain Diff
Some more input
parent
f117faf4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/eu/simstadt/regionchooser/RegionChooserCommandLineInterface.java
+8
-2
...tadt/regionchooser/RegionChooserCommandLineInterface.java
with
8 additions
and
2 deletions
+8
-2
src/main/java/eu/simstadt/regionchooser/RegionChooserCommandLineInterface.java
+
8
-
2
View file @
bc0f1e69
...
@@ -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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment