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
873e6491
Commit
873e6491
authored
Oct 27, 2025
by
Eric Duminil
Browse files
Allow to follow Links
parent
67a57fb0
Pipeline
#12024
passed with stage
in 1 minute and 5 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/main/java/eu/simstadt/regionchooser/RegionChooserUtils.java
View file @
873e6491
package
eu.simstadt.regionchooser
;
package
eu.simstadt.regionchooser
;
import
java.io.IOException
;
import
java.io.IOException
;
import
java.nio.file.FileVisitOption
;
import
java.nio.file.Files
;
import
java.nio.file.Files
;
import
java.nio.file.Path
;
import
java.nio.file.Path
;
import
java.time.LocalDate
;
import
java.time.LocalDate
;
...
@@ -152,7 +153,7 @@ public static CoordinateReferenceSystem crsFromCityGMLHeader(Path citygmlPath) t
...
@@ -152,7 +153,7 @@ public static CoordinateReferenceSystem crsFromCityGMLHeader(Path citygmlPath) t
* @throws IOException
* @throws IOException
*/
*/
public
static
Stream
<
Path
>
everyCityGML
(
Path
repository
)
throws
IOException
{
public
static
Stream
<
Path
>
everyCityGML
(
Path
repository
)
throws
IOException
{
return
Files
.
walk
(
repository
,
2
)
return
Files
.
walk
(
repository
,
2
,
FileVisitOption
.
FOLLOW_LINKS
)
.
sorted
()
.
sorted
()
.
filter
(
.
filter
(
p
->
Files
.
isRegularFile
(
p
)
&&
p
->
Files
.
isRegularFile
(
p
)
&&
...
...
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