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

Using GeoLib::Raster instead of VtkRaster in GeoMapper.

parent dca64678
No related branches found
No related tags found
No related merge requests found
...@@ -9,31 +9,36 @@ ...@@ -9,31 +9,36 @@
* Created on 2012-09-25 by Karsten Rink * Created on 2012-09-25 by Karsten Rink
*/ */
// ThirdParty/logog
#include "logog/include/logog.hpp"
#include "GeoMapper.h" #include "GeoMapper.h"
#include "Mesh.h" #include "Mesh.h"
#include "Node.h" #include "Node.h"
#include "MshEditor.h" #include "MshEditor.h"
#include "PointWithID.h" #include "PointWithID.h"
#include "VtkRaster.h" #include "Raster.h"
#include "readMeshFromFile.h" #include "readMeshFromFile.h"
GeoMapper::GeoMapper(GeoLib::GEOObjects &geo_objects, const std::string &geo_name) GeoMapper::GeoMapper(GeoLib::GEOObjects &geo_objects, const std::string &geo_name)
: _geo_objects(geo_objects), _geo_name(geo_name), _grid(NULL), : _geo_objects(geo_objects), _geo_name(geo_name), _grid(NULL), _raster(nullptr)
_origin_x(0), _origin_y(0), _cellsize(0), _width(0), _height(0), _img_data(NULL)
{ {
} }
GeoMapper::~GeoMapper() GeoMapper::~GeoMapper()
{ {
delete _img_data; delete _raster;
} }
void GeoMapper::mapOnDEM(const std::string &file_name) void GeoMapper::mapOnDEM(const std::string &file_name)
{ {
double no_data(-9999); GeoLib::Raster *raster(GeoLib::Raster::getRasterFromASCFile(file_name));
_img_data = VtkRaster::loadDataFromASC(file_name, _origin_x, _origin_y, _width, _height, _cellsize, no_data); if (! raster) {
ERR("GeoMapper::mapOnDEM(): failed to load %s", file_name.c_str());
return;
}
this->mapData(); this->mapData();
} }
...@@ -101,13 +106,19 @@ void GeoMapper::mapData(MeshLib::Mesh const*const mesh) ...@@ -101,13 +106,19 @@ void GeoMapper::mapData(MeshLib::Mesh const*const mesh)
float GeoMapper::getDemElevation(double x, double y) const float GeoMapper::getDemElevation(double x, double y) const
{ {
if ((x<_origin_x) || (x>_origin_x+(_width*_cellsize)) || (y<_origin_y) || (y>_origin_y+(_height*_cellsize))) const double origin_x(_raster->getOrigin()[0]);
const double origin_y(_raster->getOrigin()[1]);
const double cellsize(_raster->getRasterPixelDistance());
const std::size_t width(_raster->getNCols());
const std::size_t height(_raster->getNRows());
if ((x<origin_x) || (x>origin_x+(width*cellsize)) || (y<origin_y) || (y>origin_y+(height*cellsize)))
return 0; return 0;
unsigned x_index = static_cast<unsigned>((x-_origin_x)/_cellsize); const unsigned x_index = static_cast<unsigned>((x-origin_x)/cellsize);
unsigned y_index = static_cast<unsigned>((y-_origin_y)/_cellsize); const unsigned y_index = static_cast<unsigned>((y-origin_y)/cellsize);
return static_cast<float>(_img_data[y_index*_width+x_index]); return static_cast<float>(*(_raster->begin() + (y_index*width+x_index)));
} }
double GeoMapper::getMeshElevation(double x, double y, MeshLib::Mesh const*const mesh) const double GeoMapper::getMeshElevation(double x, double y, MeshLib::Mesh const*const mesh) const
......
...@@ -25,6 +25,7 @@ namespace MeshLib { ...@@ -25,6 +25,7 @@ namespace MeshLib {
namespace GeoLib { namespace GeoLib {
class PointWithID; class PointWithID;
class Raster;
} }
/** /**
...@@ -53,12 +54,7 @@ private: ...@@ -53,12 +54,7 @@ private:
GeoLib::Grid<GeoLib::PointWithID>* _grid; GeoLib::Grid<GeoLib::PointWithID>* _grid;
// only necessary for mapping on DEM // only necessary for mapping on DEM
double _origin_x; GeoLib::Raster *_raster;
double _origin_y;
double _cellsize;
unsigned _width;
unsigned _height;
double* _img_data;
}; };
#endif //GEOMAPPER_H #endif //GEOMAPPER_H
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