Add the ability to extract out an individual elev by array position rather
than only by lat/lon.
This commit is contained in:
parent
b3935db989
commit
c9757cb753
1 changed files with 4 additions and 0 deletions
|
@ -117,6 +117,10 @@ public:
|
|||
|
||||
inline point_list get_corner_node_list() const { return corner_list; }
|
||||
inline point_list get_fit_node_list() const { return node_list; }
|
||||
|
||||
inline int get_point( int col, int row ) {
|
||||
return in_data[col][row];
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue