diff --git a/GeoLib/StationBorehole.cpp b/GeoLib/StationBorehole.cpp index 10482b715a0588759bdb1d883121699ba6328e19..4086256519c951cd770e330a2bb6c6abff9e2b8b 100644 --- a/GeoLib/StationBorehole.cpp +++ b/GeoLib/StationBorehole.cpp @@ -133,16 +133,6 @@ StationBorehole* StationBorehole::createStation(const std::string &name, return station; } -void StationBorehole::createSurrogateStratigraphies(std::vector<Point*>* boreholes) -{ - std::size_t nBoreholes = boreholes->size(); - for (std::size_t i = 0; i < nBoreholes; i++) - { - auto* bore = static_cast<StationBorehole*>((*boreholes)[i]); - bore->addSoilLayer(bore->getDepth(), "depth"); - } -} - void StationBorehole::addSoilLayer ( double thickness, const std::string &soil_name) { /* diff --git a/GeoLib/StationBorehole.h b/GeoLib/StationBorehole.h index 9479a6b4812bf017470265c6935cd15dca97309c..02b3cdcdbc424d5abdf7418a2aa5337a3a98289a 100644 --- a/GeoLib/StationBorehole.h +++ b/GeoLib/StationBorehole.h @@ -78,9 +78,6 @@ public: void addSoilLayer ( double x, double y, double z, const std::string &soil_name); private: - /// Creates fake stratigraphies of only one layer with a thickness equal to the borehole depth - static void createSurrogateStratigraphies(std::vector<Point*>* boreholes); - /// Reads the specified file containing borehole stratigraphies into an vector of stringlists static int readStratigraphyFile(const std::string &path, std::vector<std::list<std::string> > &data);