-
飞控 GPS 无人机飞控
飞控 GPS 无人机飞控 ,陀螺仪平衡,GPS 自动巡航,完整的飞控算法。
- 2022-04-07 15:56:42下载
- 积分:1
-
非常实用的工具,可以用Matlab来进行射频上船用的转换以及分析。(例如可以将S矩阵转化成Z矩阵,放大器稳定性分析……)...
非常实用的工具,可以用Matlab来进行射频上船用的转换以及分析。(例如可以将S矩阵转化成Z矩阵,放大器稳定性分析……)-Very useful tool, you can use Matlab to carry out on the marine radio frequency conversion, as well as analysis. (Such as the S matrix can be transformed into Z matrix, amplifier stability analysis ... ...)
- 2023-06-26 13:55:03下载
- 积分:1
-
GPS卫星坐标计算程序
利用C#编写的卫星坐标计算程序,只需导入星历数据,即可批量计算各星历时刻的卫星坐标,内附计算数据和计算结果,欢迎大家下载。
- 2023-08-23 12:00:03下载
- 积分:1
-
用C#语言写的 GPS网平差的算例 对初做GPS网平差设计的有用
资源描述该代码主要实现的是对一个网形进行平差计算,所采用的语言为Csharp,本代码可以作为初学C#进行练手,也可以通过本程序了解GPS网平差处理的基本过程,希望对GPS研究者有所帮助。
- 2022-01-28 14:23:41下载
- 积分:1
-
无意中下到的CS版GPS程序,可以学习代码值得收藏
资源描述
无意中下到的CS版GPS程序,可以学习代码
只有本地的SqliteDB
- 2022-04-11 12:27:27下载
- 积分:1
-
这个程序是用来对nltvde进行仿真的,该思想基于多方面的考虑...
这个程序是用来对nltvde进行仿真的,该思想基于多方面的考虑-This procedure is used to nltvde simulation, based on the thinking of a number of considerations
- 2022-07-24 02:41:26下载
- 积分:1
-
used in cell phone download one of the more practical software. The software all...
应用于手机下载的一款较实用的软件。该软件能帮你让手机下载多种资源-used in cell phone download one of the more practical software. The software allows the phone to help you download a variety of resources
- 2022-04-25 13:44:16下载
- 积分:1
-
GPS精密星历读取
精密星历是按照15min的间隔给出卫星位置,要想获取任意时刻卫星的位置,必须对精密星历进行内插,本程序实现了通过读取SP3文件,对卫星的星历进行内插计算。
- 2022-02-06 23:16:15下载
- 积分:1
-
gps源码支持北斗与GPS
gps源码 ,支持北斗和GPS,显示经纬度,时间,海拔,获取卫星数量。
- 2022-03-23 21:52:30下载
- 积分:1
-
我在学习GPS编程时写的DELPHI源码 ,比较简单.希望大虾不要见笑.多多指教.
procedure TfrmMain.DrawSatInfo(gps: TGPSInfo; pbx: TPaintBox);
var
i: integer;
r: integer;
dx,dy: integer;
begin
r := pbx.Width div 2;
for i:= 1 to 12 do begin
if gps.SatInfo[i].PRN 0 then begin
dx := r + Round(r*(90-gps.SatInfo[i].EL)*sin((gps.SatInfo[i].AZ - 90)*Pi/180)/90);
dy := r + Round(r*(90-gps.SatInfo[i].EL)*cos((gps.SatInfo[i].AZ - 90)*Pi/180)/90);
dx := dx - 8;
if dx < 0 then dx := 0;
if gps.SatInfo[i].SN > 20 then begin
pbx.Canvas.Font.Color := clBlue;
pbx.Canvas.TextOut(dx,dy,inttostr(gps.SatInfo[i].PRN));
end else begin
- 2023-01-18 12:20:03下载
- 积分:1