-
suncalc
利用gps计算太阳日出日落时间,测试过很准确-suncalc
- 2022-02-04 21:25:33下载
- 积分:1
-
功率倒置算法的GPS抗干扰天线仿真
基于功率倒置算法的GPS抗干扰天线仿真以及高斯噪声的产生函数,LMS收敛,matlab源码,成功运行,效果不错,值得参考
- 2022-03-19 20:40:48下载
- 积分:1
-
post before running the program the "map" folder and the Atlas layer o...
运行程序前请先把"地图"文件夹中的地图集和图层拷到mapX4.0的maps文件夹中
刚开始的登录界面里 用户名和密码都为空,直接点击 "确认" 即可-post before running the program the "map" folder and the Atlas layer of metadata mapX4.0 maps folder at the beginning Lane user interface login names and passwords are empty, just click the "confirmation" can be
- 2022-03-24 03:36:34下载
- 积分:1
-
移动设备GIS开发包 是免费的可在ARM X68平台上开发
移动设备GIS开发包 是免费的可在ARM X68平台上开发-GIS Development Kit for mobile devices is free of charge in the ARM X68 platform
- 2022-08-16 04:33:36下载
- 积分: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
-
以前用VB,C#等很轻松将GPS信息解码。但是最近要使用C语言,(网上有一个VC的按位解的)苦于C操作字符串的难度,请各位大侠放出一份C代码解GPS。
我先...
以前用VB,C#等很轻松将GPS信息解码。但是最近要使用C语言,(网上有一个VC的按位解的)苦于C操作字符串的难度,请各位大侠放出一份C代码解GPS。
我先贴上我用C解的代码,是直接将VB和C#的思路转过来的。
现在可以读出经度或纬度-before using VB, C#, etc. is easy to decode the GPS information. However, the recent use of C language, (the Internet by a VC-Solutions) cited a string C operation difficult, Please Shanhaiguan released a GPS Solution C code. I affixed my first solution with C code directly to C# and VB of the ideas turn. Can now read latitude and longitude
- 2022-08-20 09:47:47下载
- 积分:1
-
And then check a little tcl, tck version with the path, if different to your own...
然后再检查一下tcl,tck的版本号跟路径,如果不同的目录跟你自己的版本号换了版本号一样。
- 2022-02-03 16:29:39下载
- 积分:1
-
该代码使用的是vc,该代码实现了向手机发送短信的功能。
该代码使用的是vc,该代码实现了向手机发送短信的功能。-The code using vc, the code to realize the functions of mobile phones to send text messages.
- 2023-07-10 09:10:03下载
- 积分:1
-
用C#语言写的 GPS网平差的算例 对初做GPS网平差设计的有用
资源描述该代码主要实现的是对一个网形进行平差计算,所采用的语言为Csharp,本代码可以作为初学C#进行练手,也可以通过本程序了解GPS网平差处理的基本过程,希望对GPS研究者有所帮助。
- 2022-01-28 14:23:41下载
- 积分:1
-
基于arduino的GPS地图导航系统
基于arduino的GPS地图导航系统
SPI接口。采用Atmega 328为主控芯片
需要采用滤波算法过滤
串口速率与GPS模块要设置一致,接线方式如下:
//TFT SDA -> UNO 11
//TFT SCK -> UNO 13
#define TFT_CS 10 // Chip select line for TFT display
#define TFT_A0 9 // Data/command line for TFT
#define TFT_RST 8 // Reset line for TFT (or connect to +5V)
#define TFT_LED A0
#define SD_CS 4 // Chip select line for SD card
//SD MISO -> UNO 12
//SD SCK -> UNO 13
//SD MOSI -> UNO 11
//GPS tx - UNO rx
//GPS rx - UNO tx
#define BTNZOOMIN 2
#define BTNZOOMOUT 3
- 2022-05-23 07:34:50下载
- 积分:1