2#include "viewshed_export.h"
4#include "abstractviewshedalgorithm.h"
8 namespace visibilityalgorithm
14 FuzzyVisibility(
double clearVisibility = 500,
double halfDropout = 1500,
15 bool includeVerticalDistance =
false,
double notVisible = -1 );
17 double result( std::shared_ptr<LoSImportantValues> losValues, std::shared_ptr<AbstractLoS> los )
override;
21 const std::string name()
override;
26 double mNotVisible = -1;
27 bool mVerticalDistance =
false;
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 fuzzy.cpp:15
double pointValue() override
Value at important point, either view point for viewshed or target point for inverse viewshed.
Definition visibilityfuzzy.h:19