Accuracy
Line-of-sight computations are sensitive for errors in the input: observer position, ground elevations, tree heights, and the amount of atmospheric refraction. Small errors in these data can give large errors in the viewshed, so it is wise to take the results with a grain of salt.
Furthermore, the percentages computed by a VisibilityIndexOperator give only an approximation of the viewshed areas as a LineOfSightOperator would compute them. The deviation depends on the properties used by the VisibilityIndexOperator, but it is typically a couple of percent units.
Dynamic Exploration of Accuracy
One way to study the viewshed accuracy is to modify some input, while updating the viewshed dynamically. This should tell how sensitive the viewshed is for errors. The viewshed is usually computed so fast that this method is feasible. For example:
If the observer position is uncertain, let the user move the observer around.
If the atmospheric refraction is uncertain, let the user modify its value with a continuous slider.
If the tree heights are estimated from terrain types as in Trees as Obstacles, you can let the user edit the table of estimates (perhaps with a continuous slider for the tree height of each forest type). Remember that since the global cache is used, the Operator.FlushCache method must be called before the view is updated.
If the elevation data are uncertain, you can add a raster with random errors to your elevation raster (you must make a custom operator that creates the random raster). Again, since the global cache is used, the Operator.FlushCache method must be called before the View is updated.
Previous: Multiple Resolution
Up: Visibility Analysis