From 0aecc16ea16db3dbac1bd330e67735227b74b89e Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Fri, 16 Nov 2012 10:57:36 +0100
Subject: [PATCH] fixed a bug in Raster::writeRasterAsASC() and corrected a
 typo

---
 GeoLib/Raster.cpp | 4 ++--
 GeoLib/Raster.h   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/GeoLib/Raster.cpp b/GeoLib/Raster.cpp
index 73428b7e2ee..3f3d4a3bb64 100644
--- a/GeoLib/Raster.cpp
+++ b/GeoLib/Raster.cpp
@@ -67,8 +67,8 @@ GeoLib::Point const& Raster::getOrigin() const
 void Raster::writeRasterAsASC(std::ostream &os) const
 {
 	// write header
-	os << "ncols " << _n_rows << std::endl;
-	os << "nrows " << _n_cols << std::endl;
+	os << "ncols " << _n_cols << std::endl;
+	os << "nrows " << _n_rows << std::endl;
 	os << "xllcorner " << _ll_pnt[0] << std::endl;
 	os << "yllcorner " << _ll_pnt[1] << std::endl;
 	os << "cellsize " <<  _cell_size << std::endl;
diff --git a/GeoLib/Raster.h b/GeoLib/Raster.h
index ff8830f3bd5..6b3da340999 100644
--- a/GeoLib/Raster.h
+++ b/GeoLib/Raster.h
@@ -106,7 +106,7 @@ public:
 	~Raster();
 
 	/**
-	 * Write meta data and raw raster data as asci file into the ouput stream.
+	 * Write meta data and raw raster data as asci file into the output stream.
 	 * @param os the output stream
 	 */
 	void writeRasterAsASC(std::ostream &os) const;
-- 
GitLab