2#include "viewshed_export.h"
4#include "abstractviewshedalgorithm.h"
8 namespace visibilityalgorithm
14 DistanceGlobalHorizon(
double noHorizon = -99999 );
16 double result( std::shared_ptr<LoSImportantValues> losValues, std::shared_ptr<AbstractLoS> los )
override;
20 const std::string name()
override;
23 double mNoHorizon = -99999;
Base class for all Viewshed Algorithms.
Definition abstractviewshedalgorithm.h:19
double result(std::shared_ptr< LoSImportantValues > losValues, std::shared_ptr< AbstractLoS > los) override
Extract resulting value based on LoSImportantValues and specific los.
Definition distanceglobalhorizon.cpp:9
double pointValue() override
Value at important point, either view point for viewshed or target point for inverse viewshed.
Definition visibilitydistanceglobalhorizon.h:18