TerrainAlongLineComputeObstructionMetric Method (Cartographic, Cartographic, TerrainProvider, Double, Double, Boolean, Boolean) |
Computes a metric value indicating the amount of obstruction from the line of sight between the target and observer positions
and the direction to the point on terrain with the highest elevation angle.
The metric value is determined from the perspective of the position closest to the
Shape.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainAnalysis (in AGI.Foundation.TerrainAnalysis.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static double ComputeObstructionMetric(
Cartographic observerPosition,
Cartographic targetPosition,
TerrainProvider terrainProvider,
double minimumTerrainHeight,
double maximumTerrainHeight,
bool findWorstObstruction,
bool findIndicatedExtremaPrecisely
)
Public Shared Function ComputeObstructionMetric (
observerPosition As Cartographic,
targetPosition As Cartographic,
terrainProvider As TerrainProvider,
minimumTerrainHeight As Double,
maximumTerrainHeight As Double,
findWorstObstruction As Boolean,
findIndicatedExtremaPrecisely As Boolean
) As Double
public:
static double ComputeObstructionMetric(
Cartographic observerPosition,
Cartographic targetPosition,
TerrainProvider^ terrainProvider,
double minimumTerrainHeight,
double maximumTerrainHeight,
bool findWorstObstruction,
bool findIndicatedExtremaPrecisely
)
static member ComputeObstructionMetric :
observerPosition : Cartographic *
targetPosition : Cartographic *
terrainProvider : TerrainProvider *
minimumTerrainHeight : float *
maximumTerrainHeight : float *
findWorstObstruction : bool *
findIndicatedExtremaPrecisely : bool -> float
Parameters
- observerPosition
- Type: AGI.Foundation.CoordinatesCartographic
The planetodetic position of the observer object, expressed as a longitude, latitude, and altitude
relative to the ellipsoid specified by the Shape property of the
terrainProvider.
- targetPosition
- Type: AGI.Foundation.CoordinatesCartographic
The planetodetic position of the target object, expressed as a longitude, latitude, and altitude
relative to the ellipsoid specified by the Shape property of the
terrainProvider.
- terrainProvider
- Type: AGI.Foundation.TerrainTerrainProvider
The terrain provider describing the terrain that is potentially obscuring the path
between the two objects.
- minimumTerrainHeight
- Type: SystemDouble
The minimum height in meters that can be returned by the
TerrainProvider's GetHeightRelativeToShape(Double, Double) method.
Setting this value lower than necessary will not affect the results, but it will decrease
performance. Setting it too high can cause incorrect results. For realistic Earth-based terrain data,
DefaultMinimumTerrainHeight is a safe value to use for this parameter.
- maximumTerrainHeight
- Type: SystemDouble
The maximum height in meters that can be returned by the
TerrainProvider's GetHeightRelativeToShape(Double, Double) method.
Setting this value higher than necessary will not affect the results, but it will decrease
performance. Setting it too low can cause incorrect results. For realistic Earth-based terrain data,
DefaultMaximumTerrainHeight is a safe value to use for this parameter.
- findWorstObstruction
- Type: SystemBoolean
Indicates whether the metric value associated with the worst amount of obstruction is sought. - findIndicatedExtremaPrecisely
- Type: SystemBoolean
Determines whether all extrema indicated from sampling should be found precisely.
Return Value
Type:
Double
The metric value indicating obstruction from the line of sight between the target and observer positions
and the direction to the point on terrain with the highest elevation angle.
The metric value is determined from the perspective of the position closest to the
Shape.
Positive numbers indicate that the line of sight between the objects is not obscured by terrain.
Negative numbers indicate that it is obscured.
Exceptions See Also