Viewshed 6.1.0
A C++ library for calculation of viewshed, inverse viewshed and visibility indices for both of those analyses.
Loading...
Searching...
No Matches
viewshedvalues.h
1#pragma once
2
3#include <vector>
4
5#include "rasterposition.h"
6
7namespace viewshed
8{
9 class Point;
10
16 class DLL_API ViewshedValues : public RasterPosition
17 {
18 public:
19 std::vector<double> values;
20
21 ViewshedValues() {};
22
23 ViewshedValues( int row_, int col_ )
24 {
25 mRow = row_;
26 mCol = col_;
27 };
28 };
29} // namespace viewshed
Class that represents important point for viewshed - view point, or inverse viewshed - target point....
Definition point.h:21