From 35cd91fe5a8ab354b3ca43c4fb084bafd2568b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=82=AB=E9=94=9F?= <11661656+dazzle-kun@user.noreply.gitee.com> Date: Mon, 10 Apr 2023 12:32:11 +0000 Subject: [PATCH] update AstroLib/Include/AsCoordSystem_2023.h. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 炫锟 <11661656+dazzle-kun@user.noreply.gitee.com> --- AstroLib/Include/AsCoordSystem_2023.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/AstroLib/Include/AsCoordSystem_2023.h b/AstroLib/Include/AsCoordSystem_2023.h index 3f59c93..57a45de 100644 --- a/AstroLib/Include/AsCoordSystem_2023.h +++ b/AstroLib/Include/AsCoordSystem_2023.h @@ -1,2 +1,20 @@ #pragma once +#include"AsCoordinate.h" +//******************************************************************** +/// 地固系到发射坐标系的转换矩阵 +/// 发射坐标系:x轴平行地面指向发射方向,y垂直地面铅锤向上,z成右手直角坐标系 +/// @author fangxuankun +/// @Date 2023.4.5 +/// @Input +/// @Param A0 发射方位角A0,定义为发射方向与当地正北的夹角,顺时针度量为正 +/// @Param Lon 发射点的经度 +/// @Param Lan 发射点的纬度 +/// @Output +/// @Param mtx 地固系到发射坐标系的转换矩阵 +//******************************************************************** +void AsCBFToLCMtx( + double A0, + double Lon, + double Lat, + CMatrix& mtx); -- Gitee