Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wenqing
ogs
Commits
f0ae6760
Commit
f0ae6760
authored
6 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
[GL] StationBorehole: Rm unused addStratigraphy.
parent
e0f74327
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GeoLib/StationBorehole.cpp
+0
-35
0 additions, 35 deletions
GeoLib/StationBorehole.cpp
GeoLib/StationBorehole.h
+0
-3
0 additions, 3 deletions
GeoLib/StationBorehole.h
with
0 additions
and
38 deletions
GeoLib/StationBorehole.cpp
+
0
−
35
View file @
f0ae6760
...
@@ -77,41 +77,6 @@ int StationBorehole::readStratigraphyFile(const std::string &path,
...
@@ -77,41 +77,6 @@ int StationBorehole::readStratigraphyFile(const std::string &path,
return
1
;
return
1
;
}
}
int
StationBorehole
::
addStratigraphy
(
const
std
::
string
&
path
,
StationBorehole
*
borehole
)
{
std
::
vector
<
std
::
list
<
std
::
string
>
>
data
;
if
(
readStratigraphyFile
(
path
,
data
))
{
std
::
size_t
size
=
data
.
size
();
for
(
std
::
size_t
i
=
0
;
i
<
size
;
i
++
)
{
addLayer
(
data
[
i
],
borehole
);
}
// check if a layer is missing
// size = borehole->_soilName.size();
INFO
(
"StationBorehole::addStratigraphy ToDo"
);
// for (std::size_t i=0; i<size; i++)
// {
// if ((borehole->_soilLayerThickness[i] == -1) ||(borehole->_soilName[i].compare("") == 0))
// {
// borehole->_soilLayerThickness.clear();
// borehole->_soilName.clear();
//
// WARN("StationBorehole::addStratigraphy() - Profile incomplete (Borehole %s, Layer %d missing)", borehole->_name.c_str(), i+1);
//
// return 0;
// }
// }
}
else
{
borehole
->
addSoilLayer
(
borehole
->
getDepth
(),
"depth"
);
}
return
1
;
}
int
StationBorehole
::
addLayer
(
std
::
list
<
std
::
string
>
fields
,
StationBorehole
*
borehole
)
int
StationBorehole
::
addLayer
(
std
::
list
<
std
::
string
>
fields
,
StationBorehole
*
borehole
)
{
{
if
(
fields
.
size
()
>=
4
)
/* check if there are enough fields to create a borehole object */
if
(
fields
.
size
()
>=
4
)
/* check if there are enough fields to create a borehole object */
...
...
This diff is collapsed.
Click to expand it.
GeoLib/StationBorehole.h
+
0
−
3
View file @
f0ae6760
...
@@ -52,9 +52,6 @@ public:
...
@@ -52,9 +52,6 @@ public:
/// Adds a stratigraphy to a borehole given a vector of points of length "n" and a vector of soil names of length "n-1".
/// Adds a stratigraphy to a borehole given a vector of points of length "n" and a vector of soil names of length "n-1".
int
addStratigraphy
(
const
std
::
vector
<
Point
*>
&
profile
,
const
std
::
vector
<
std
::
string
>
&
soil_names
);
int
addStratigraphy
(
const
std
::
vector
<
Point
*>
&
profile
,
const
std
::
vector
<
std
::
string
>
&
soil_names
);
/// Reads the stratigraphy for a specified station from a file
static
int
addStratigraphy
(
const
std
::
string
&
path
,
StationBorehole
*
borehole
);
// Returns the depth of the borehole
// Returns the depth of the borehole
double
getDepth
()
const
{
return
_depth
;
}
double
getDepth
()
const
{
return
_depth
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment