diff --git a/GeoLib/StationBorehole.cpp b/GeoLib/StationBorehole.cpp
index 961fe6ed6be333a2896dbed7041eb4e6fb563d42..38e0c80f8010d219a3cb13914c67306d645f3b4b 100644
--- a/GeoLib/StationBorehole.cpp
+++ b/GeoLib/StationBorehole.cpp
@@ -77,41 +77,6 @@ int StationBorehole::readStratigraphyFile(const std::string &path,
     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)
 {
     if (fields.size() >= 4) /* check if there are enough fields to create a borehole object */
diff --git a/GeoLib/StationBorehole.h b/GeoLib/StationBorehole.h
index b47e2d5bd55e4532515a6f894b0f46dbea4dcb22..436d27358dda45b31810b9d7bc138c24a44d4cb7 100644
--- a/GeoLib/StationBorehole.h
+++ b/GeoLib/StationBorehole.h
@@ -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".
     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
     double getDepth() const { return _depth; }