TerrainAlongLineComputeTerrainIntersection Method (Cartesian, UnitCartesian, Double, Double, TerrainProvider) |
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 Cartographic? ComputeTerrainIntersection(
Cartesian cartesian,
UnitCartesian direction,
double granularity,
double maximumDistance,
TerrainProvider terrainProvider
)
Public Shared Function ComputeTerrainIntersection (
cartesian As Cartesian,
direction As UnitCartesian,
granularity As Double,
maximumDistance As Double,
terrainProvider As TerrainProvider
) As Cartographic?
public:
static Nullable<Cartographic> ComputeTerrainIntersection(
Cartesian cartesian,
UnitCartesian direction,
double granularity,
double maximumDistance,
TerrainProvider^ terrainProvider
)
static member ComputeTerrainIntersection :
cartesian : Cartesian *
direction : UnitCartesian *
granularity : float *
maximumDistance : float *
terrainProvider : TerrainProvider -> Nullable<Cartographic>
Parameters
- cartesian
- Type: AGI.Foundation.CoordinatesCartesian
The Cartesian representation of the location expressed in the reference frame fixed to the
ellipsoid specified by the Shape property of the terrainProvider.
- direction
- Type: AGI.Foundation.CoordinatesUnitCartesian
The direction along which to check for intersection with terrain. - granularity
- Type: SystemDouble
The sampling step as a positively valued fraction of the terrain resolution. - maximumDistance
- Type: SystemDouble
A positively valued limit on the distance in meters along
the indicated direction at which intersection with terrain is no longer checked. - terrainProvider
- Type: AGI.Foundation.TerrainTerrainProvider
The terrain provider describing the terrain that is potentially obscuring the path
between the two objects.
Return Value
Type:
NullableCartographic
The planetodetic location of intersection with terrain expressed in the reference frame fixed to the
ellipsoid specified by the
Shape property of the
terrainProvider or null if no intersection exists. The provided location may be returned
as the point of intersection if it lies on the terrain surface and the indicated direction is directly
into the terrain surface.
Exceptions See Also