Visibility Analysis
Visibility analysis, also known as line-of-sight analysis, can calculate what an observer can see: the viewshed of the observer. But the word "viewshed" can be used in two senses:
If you are asking: what parts of the ground can be seen, then you are thinking of a two-dimensional viewshed surface that covers part of the ground surface.
If you are asking: what parts of the air can be seen, then you are thinking of a three-dimensional viewshed volume.
In the GIS literature, the two concepts are often called the 2D viewshed and the 3D viewshed, but it is easy to misunderstand these terms as indicating just the way the viewshed is displayed. So in the Carmenta documentation, we prefer the terms viewshed surface and viewshed volume.
Carmenta Engine supports two main ways to analyze visibility:
By attaching a LineOfSightOverlay to a GlobeView, you can display a viewshed surface in a 3D presentation. This approach uses the 3D ground meshes that are loaded in the globe view, and can also use auxiliary ground meshes giving a detailed city model. But the LineOfSightOverlay cannot display a viewshed volume.
With a LineOfSightOperator, you can use elevation raster data to calculate a viewshed surface or a viewshed volume, which can then be displayed in a 2D map, or in a 3D presentation, or in a 2D vertical profile. It is of course tricky to make a good display of a viewshed volume in a 2D map, but one can slice the volume horizontally at one or more altitudes and present the contour lines.
Elevation rasters cannot represent the environment quite as precisely as meshes can, since an elevation raster contains only one elevation value per horizontal position so that it cannot represent an overhang or an arch. And of course, the horizontal accuracy will be limited by the raster resolution.
On the other hand, a LineOfSightOperator is in some ways more versatile than a LineOfSightOverlay. For example, the viewshed surface displayed by a LineOfSightOperator does not have to be a surface on the ground; instead it can be used to show what the observer sees of an imaginary surface floating in the air, for example the surface that floats 50 meters above ground.
There are some other operators that also use elevation rasters and perform related kinds of visibility analysis:
The ShadowOperator treats the sun as an observer, using the View.SunPosition, and produces rasters that are analogous to the default output from a LineOfSightOperator. So you can find out what parts of the ground that are sunlit, and how high the shadow volume is above ground.
The VisibilityIndexOperator can be used to solve the problem of observer siting, where you want to find a position for a single observer that maximizes the viewshed surface area.
The TargetLineOfSightOperator is useful when you know both observer positions and target positions. Instead of calculating a full viewshed, the operator will output copies of the target features, with additional attributes that tell which and how many observers that can see them. The operator can also generate line features from observers to targets.
The AirspaceCoverageOperator is similar to a LineOfSightOperator, but is intended for the use case where you have many observers with overlapping viewsheds. The AirspaceCoverageOperator computes a merged viewshed representing where the combined observer coverage is sufficient, according to some configurable conditions.
The standard propagation model for line of sight is simple: forests are fully opaque, and light rays and radar signals travel in straight lines, except that they bend slightly downwards due to atmospheric refraction. However, the LineOfSightOperator and its subclasses TargetLineOfSightOperator and AirspaceCoverageOperator allow you to replace the standard propagation model by a custom propagation object, so you can implement your own propagation models for radio, sound, ballistic trajectories, etc. For more details, see LineOfSightOperator.CustomPropagation, CustomPropagationProxy, and ICustomPropagation. There is also a custom propagation sample that models line of sight in semitransparent forests; see An Overview of the Carmenta Engine Custom Object Samples.
The following chapters give further introductions to the visibility operators that use elevation rasters. The LineOfSightOverlay is not discussed further here since its API differs from the operators, and the ShadowOperator is also omitted since it has very few configurable properties. See also the Line of Sight Configuration Tutorial, and try out the sample map configurations line_of_sight.px, 3d_line_of_sight.px, line_of_sight_trees.px, line_of_sight_heterogeneous.px, airspace_coverage.px, visibility_index_operator.px and air_route_operator.px in Carmenta Explorer. There is also a sample application, see LineOfSight Sample.
Contents
LineOfSightOperator: What can I see?
AirspaceCoverageOperator: What can we see together?
TargetLineOfSightOperator: which targets can I see?
VisibilityIndexOperator: from where do I see best?
Properties of the Sensor
Overlapping Viewsheds
Length Units for Visibility Analysis
Trees as Obstacles
Multiple Resolution
Accuracy