2#include "viewshed_export.h"
4#include "abstractviewshedalgorithm.h"
8 namespace visibilityalgorithm
14 double result( std::shared_ptr<LoSImportantValues> losValues, std::shared_ptr<AbstractLoS> los )
override;
18 const std::string
name()
override;
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