Click or drag to resize
XDL

XfnCalcGlobalSensorAttitudeInPlatformUAS Method

UAS LS 표준에 따라 지구 타원체 상의 특정 지점에서 지구 중심으로 향하는 축과 직교하는 좌표계(NED)에서 North 시선 방향인 기체와 센서의 회전각을 입력 받아서 D 방향을 지향하는 센서가 탑재된 N 방향 기준의 센서 자세를 나타내는 yaw, pitch, roll값을 계산한다. 즉, 입력 지점에서 NED 축을 입력된 자세로 회전했을 때 센서의 시선은 N축과 일치하고, 센서의 시선이 D축으로 정렬되는 자세 회전각을 계산한다.

Namespace: Pixoneer.NXDL
Assembly: NXDL (in NXDL.dll) Version: 2.0.3.38
Syntax
C#
public static XVertex3d CalcGlobalSensorAttitudeInPlatformUAS(
	XGeoPoint ptPos,
	XAngle yawPlatform,
	XAngle pitchPlatform,
	XAngle rollPlatform,
	XAngle azimuthRelative,
	XAngle elevRelative,
	XAngle rollRelative,
	ref XAngle yaw,
	ref XAngle pitch,
	ref XAngle roll
)

Parameters

ptPos  XGeoPoint
[In] 기체/센서 위치
yawPlatform  XAngle
[In] 기체 yaw 각도.
pitchPlatform  XAngle
[In] 기체 pitch 각도.
rollPlatform  XAngle
[In] 기체 roll 각도.
azimuthRelative  XAngle
[In] 기체를 기준으로한 센서의 방위각.
elevRelative  XAngle
[In] 기체를 기준으로 한 센서의 고각. 0이 정면, 음수가 아래 방향.
rollRelative  XAngle
[In] 센서 렌즈 축의 회전각.
yaw  XAngle
[Out] 최종 센서 프레임의 yaw 각도.
pitch  XAngle
[Out] 최종 센서 프레임의 pitch 각도.
roll  XAngle
[Out] 최종 센서 프레임의 roll 각도.

Return Value

XVertex3d
기체의 중심점에서 센서가 향하는 방향 벡터.
See Also