Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
CityDoctor
CityDoctor2
Commits
15a898dd
Commit
15a898dd
authored
2 months ago
by
Matthias Betz
Browse files
Options
Download
Email Patches
Plain Diff
remove debug System.out.println
parent
588eff19
master
107-opengl-view
dev
dev_cpp_code_conversion
dev_gui_features_zip_loading
dev_visitor_rework
3.17.1
3.17.0
archive/dev_gui_features_zip_loading
2 merge requests
!28
Version 3.17.0 Release
,
!24
cleanup code
Pipeline
#10974
passed with stage
in 1 minute and 13 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/checks/geometry/SolidSelfIntCheckFalsePositiveBigMeshTest.java
+0
-1
...s/geometry/SolidSelfIntCheckFalsePositiveBigMeshTest.java
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/checks/geometry/SolidSelfIntCheckTest.java
+0
-1
...rt/citydoctor2/checks/geometry/SolidSelfIntCheckTest.java
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/systemtest/NonManifoldVertexSystemTest.java
+0
-1
...t/citydoctor2/systemtest/NonManifoldVertexSystemTest.java
CityDoctorParent/Extensions/CityDoctorHealer/src/main/java/de/hft/stuttgart/citydoctor2/healing/HealMainBuilding.java
+0
-2
...e/hft/stuttgart/citydoctor2/healing/HealMainBuilding.java
with
0 additions
and
5 deletions
+0
-5
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/checks/geometry/SolidSelfIntCheckFalsePositiveBigMeshTest.java
+
0
-
1
View file @
15a898dd
...
...
@@ -36,7 +36,6 @@ public class SolidSelfIntCheckFalsePositiveBigMeshTest {
Checker
c
=
new
Checker
(
config
,
m
);
c
.
runChecks
();
Building
building
=
m
.
getBuildings
().
get
(
0
);
System
.
out
.
println
(
building
.
containsAnyError
());
/*
* The examples have no actual self-intersections, but can contain other actual model defects.
* If an error is detected, it is thus required to check if the
...
...
This diff is collapsed.
Click to expand it.
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/checks/geometry/SolidSelfIntCheckTest.java
+
0
-
1
View file @
15a898dd
...
...
@@ -86,7 +86,6 @@ public class SolidSelfIntCheckTest {
Checker
c
=
new
Checker
(
config
,
m
);
c
.
runChecks
();
Building
building
=
m
.
getBuildings
().
get
(
0
);
System
.
out
.
println
(
building
.
containsAnyError
());
/*
* The examples have no actual self-intersections, but can contain other actual model defects.
* If an error is detected, it is thus required to check if the
...
...
This diff is collapsed.
Click to expand it.
CityDoctorParent/CityDoctorValidation/src/test/java/de/hft/stuttgart/citydoctor2/systemtest/NonManifoldVertexSystemTest.java
+
0
-
1
View file @
15a898dd
...
...
@@ -45,7 +45,6 @@ public class NonManifoldVertexSystemTest {
CityDoctorModel
c
=
TestUtil
.
loadAndCheckCityModel
(
"src/test/resources/SimpleSolid_SrefBS.gml"
);
Geometry
g
=
c
.
getBuildings
().
get
(
0
).
getGeometries
().
get
(
0
);
CheckResult
cr
=
g
.
getCheckResult
(
CheckId
.
C_GE_S_NON_MANIFOLD_VERTEX
);
System
.
out
.
println
(
cr
);
assertEquals
(
ResultStatus
.
OK
,
cr
.
getResultStatus
());
}
...
...
This diff is collapsed.
Click to expand it.
CityDoctorParent/Extensions/CityDoctorHealer/src/main/java/de/hft/stuttgart/citydoctor2/healing/HealMainBuilding.java
+
0
-
2
View file @
15a898dd
...
...
@@ -36,7 +36,6 @@ public class HealMainBuilding implements HealingMethod {
}
logger
.
debug
(
"Executing Repair for AttributeMissingError with message Main Building"
);
Building
b
=
(
Building
)
err
.
getFeature
();
System
.
out
.
println
(
"Building: "
+
b
.
getGmlId
());
BuildingPart
largestPart
=
null
;
double
largestArea
=
0
;
for
(
BuildingPart
part
:
b
.
getBuildingParts
())
{
...
...
@@ -58,7 +57,6 @@ public class HealMainBuilding implements HealingMethod {
// no suitable part found
return
false
;
}
System
.
out
.
println
(
"Part: "
+
largestPart
.
getGmlId
()
+
" has area: "
+
largestArea
);
b
.
getBuildingParts
().
remove
(
largestPart
);
var
gmlBuilding
=
(
org
.
citygml4j
.
core
.
model
.
building
.
Building
)
b
.
getGmlObject
();
BuildingPartProperty
buildingPartProp
=
findBuildingPartProp
(
largestPart
,
gmlBuilding
);
...
...
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
Menu
Explore
Projects
Groups
Snippets