-
在给定星历条件下计算卫星坐标,当有更多星历数据时候程序需要更改...
在给定星历条件下计算卫星坐标,当有更多星历数据时候程序需要更改-In a given ephemeris calculation under the condition of the satellite coordinates, when more time ephemeris data process need to change
- 2022-02-11 19:33:24下载
- 积分:1
-
GPS and BlackBerry Maps Development Guide
GPS and BlackBerry Maps Development Guide
- 2022-06-27 19:11:57下载
- 积分:1
-
- 2022-01-27 16:53:30下载
- 积分:1
-
根据GPS卫星的广播星历,计算卫星的位置
根据GPS卫星的广播星历,计算卫星的位置,也可以进行GPS卫星位置的预报
- 2022-04-18 15:17:44下载
- 积分:1
-
功率倒置算法的GPS抗干扰天线仿真
基于功率倒置算法的GPS抗干扰天线仿真以及高斯噪声的产生函数,LMS收敛,matlab源码,成功运行,效果不错,值得参考
- 2022-03-19 20:40:48下载
- 积分:1
-
gps的开发程序,出自吉大的高手,gis开发是目前非常有前途的一个方向。...
gps的开发程序,出自吉大的高手,gis开发是目前非常有前途的一个方向。-the development process, from the Kyrgyzstan big players and gis development is a very promising direction.
- 2022-02-28 23:30:50下载
- 积分:1
-
GPS多路径效应的谱分析工具,结合TEQC软件使用。
GPS多路径效应的谱分析工具,结合TEQC软件使用。-GPS multi-path effects of spectral analysis tools, combined with the use of TEQC software.
- 2022-04-10 22:51:36下载
- 积分:1
-
Win98,Winme,Winnt,Winxp,Win2003 VC+mapX开发GPS车辆监控的源码
Win98,Winme,Winnt,Winxp,Win2003 VC+mapX开发GPS车辆监控的源码-Win98, Winme, WINNT, Winxp, Win2003 VC mapX development of the GPS vehicle monitoring FOSS
- 2023-04-22 05:55:03下载
- 积分:1
-
GPS单点定位程序
利用C#编写的GPS伪距单点定位程序,可以根据星历数据和观测数据批量计算接收机坐标,内附测试数据和结果。
- 2022-03-04 00:35:37下载
- 积分: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