diff --git a/GeoLib/Station.cpp b/GeoLib/Station.cpp
index 3ebd26296147a86c1bbb121e08e8ce810eb90301..c8f0d45570dd0e6f5f5d563dac443282f37787d7 100644
--- a/GeoLib/Station.cpp
+++ b/GeoLib/Station.cpp
@@ -75,5 +75,11 @@ Station* Station::createStation(const std::string &name, double x, double y, dou
 	return station;
 }
 
+bool isStation(GeoLib::Point const* pnt)
+{
+	GeoLib::Station const* bh(dynamic_cast<GeoLib::Station const*>(pnt));
+	return bh != nullptr;
+}
+
 } // namespace
 
diff --git a/GeoLib/Station.h b/GeoLib/Station.h
index 218cd2e218f0a8ebb0c0505d23e93a5359af8b08..b269b8c694f6faccf88d0288ae6cd24581fc559d 100644
--- a/GeoLib/Station.h
+++ b/GeoLib/Station.h
@@ -103,6 +103,7 @@ private:
 
 };
 
+bool isStation(GeoLib::Point const* pnt);
 } // namespace
 
 #endif // GEO_STATION_H
diff --git a/GeoLib/StationBorehole.cpp b/GeoLib/StationBorehole.cpp
index b0cc8e61aff38bdc4e4ebbf267a457d8c2524190..338d84c17002506306e160d63f84bcc7dbaecd8e 100644
--- a/GeoLib/StationBorehole.cpp
+++ b/GeoLib/StationBorehole.cpp
@@ -292,4 +292,12 @@ void StationBorehole::addSoilLayer ( double x, double y, double z, const std::st
 	_profilePntVec.push_back (new Point (x, y, z));
 	_soilName.push_back(soil_name);
 }
+
+bool isBorehole(GeoLib::Point const* pnt)
+{
+	GeoLib::StationBorehole const* bh(
+		dynamic_cast<GeoLib::StationBorehole const*>(pnt));
+	return bh != nullptr;
+}
+
 } // namespace
diff --git a/GeoLib/StationBorehole.h b/GeoLib/StationBorehole.h
index 9fa7b36bfe8440fab743615f4dc3e55d7be28838..5c5ae62e3ad40c321884554190a0d31235a24d50 100644
--- a/GeoLib/StationBorehole.h
+++ b/GeoLib/StationBorehole.h
@@ -116,6 +116,9 @@ private:
 	/// Contains the points for the lower boundaries of all layers
 	std::vector<Point*> _profilePntVec;
 };
+
+bool isBorehole(GeoLib::Point const* pnt);
+
 } // namespace
 
 #endif // GEO_STATIONBOREHOLE_H