-
收集的关于地图的脚本源码
资源描述包含不能下到的这三个文件
- 2022-03-14 19:21:45下载
- 积分:1
-
GPS卫星坐标计算程序
利用C#编写的卫星坐标计算程序,只需导入星历数据,即可批量计算各星历时刻的卫星坐标,内附计算数据和计算结果,欢迎大家下载。
- 2023-08-23 12:00:03下载
- 积分:1
-
GPS软件接收机基础,英文原版,陈军,潘高峰等人翻译的第二版...
GPS软件接收机基础,英文原版,陈军,潘高峰等人翻译的第二版-Software based on GPS receiver, the original English edition, Chen Jun, Pan, who translated the peak of the second edition of
- 2022-03-12 22:14:16下载
- 积分:1
-
nmea GPS header file gr-87
此代码为任何nmea gps模块制造,并专门用于nmea gr-87 gps模块。
- 2022-03-23 21:37:02下载
- 积分:1
-
免费GPS软件 Free GPS Software
免费GPS软件 Free GPS Software-Free GPS software Free GPS Software
- 2022-11-27 23:05:04下载
- 积分:1
-
一个无线传感器网络路由树,对于那些研究无线传感器网络路由的朋友来说…
一个WSN的树状路由,对于那些学WSN路由方面的朋友应该有说帮助.-A WSN routing tree, for those who study aspects of WSN routing Friend have said should help.
- 2022-03-26 19:13:31下载
- 积分:1
-
KiWi协议,GPS 导航使用,官方网站
KiWi协议,GPS 导航使用,官方网站-KiWi
- 2022-09-25 16:55:03下载
- 积分:1
-
android gps jni源码
android gps jni源码函数调用了hw_get_module加载硬件适配模块.so文件,接着通过hw_device_t接口调用open()函数,实际执行了gps/loc_api/libloc_api/gps.c定义的open_gps函数,然后调用gps_device_t接口的get_gps_interface函数,此函数也是在gps.c中定义的,最后返回HAL层中loc_eng.cpp文件的sLocEngInterface,从而打通了上层到底层的通道。
- 2022-07-04 08:53:33下载
- 积分:1
-
与一般的处理步骤
GAMIT 软件培训资料,处理精密GPS观测数据-gamit General processing steps
- 2023-04-19 20:00:04下载
- 积分: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