Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
c92dd17a
Commit
c92dd17a
authored
12 years ago
by
Tom Fischer
Browse files
Options
Downloads
Patches
Plain Diff
Using GeoLib::Raster instead of VtkRaster in GeoMapper.
parent
dca64678
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Gui/DataView/GeoMapper.cpp
+21
-10
21 additions, 10 deletions
Gui/DataView/GeoMapper.cpp
Gui/DataView/GeoMapper.h
+2
-6
2 additions, 6 deletions
Gui/DataView/GeoMapper.h
with
23 additions
and
16 deletions
Gui/DataView/GeoMapper.cpp
+
21
−
10
View file @
c92dd17a
...
@@ -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
"
Vtk
Raster.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
...
...
This diff is collapsed.
Click to expand it.
Gui/DataView/GeoMapper.h
+
2
−
6
View file @
c92dd17a
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment