Skip to content
Snippets Groups Projects
Commit f0ae6760 authored by Tom Fischer's avatar Tom Fischer
Browse files

[GL] StationBorehole: Rm unused addStratigraphy.

parent e0f74327
No related branches found
No related tags found
No related merge requests found
...@@ -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 */
......
...@@ -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; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment