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
visibilityelevationdifference.h
1#pragma once
2#include "viewshed_export.h"
3
4#include "abstractviewshedalgorithm.h"
5
6namespace viewshed
7{
8 namespace visibilityalgorithm
9 {
11 {
12
13 public:
14 double result( std::shared_ptr<LoSImportantValues> losValues, std::shared_ptr<AbstractLoS> los ) override;
15
16 double pointValue() override;
17
18 const std::string name() override;
19 };
20 } // namespace visibilityalgorithm
21} // namespace viewshed
Base class for all Viewshed Algorithms.
Definition abstractviewshedalgorithm.h:19
double pointValue() override
Value at important point, either view point for viewshed or target point for inverse viewshed.
Definition elevationdifference.cpp:10
double result(std::shared_ptr< LoSImportantValues > losValues, std::shared_ptr< AbstractLoS > los) override
Extract resulting value based on LoSImportantValues and specific los.
Definition elevationdifference.cpp:5
const std::string name() override
Name of the algorithm.
Definition elevationdifference.cpp:12
Definition visibilityelevationdifference.h:11