-
免费GPS软件 Free GPS Software
免费GPS软件 Free GPS Software-Free GPS software Free GPS Software
- 2022-11-27 23:05:04下载
- 积分:1
-
GPS positioning system, a good introduction. GPS can understand only
GPS 定位系统,不错的介绍。可以了解GPS的只是-GPS positioning system, a good introduction. GPS can understand only
- 2022-02-20 03:20:13下载
- 积分:1
-
最短路径分析的控件,首先使用regsvr32 程序注册该动态连接库,然后在vb中直接使用该动态链接库.程序中有相关说明,具体文件可以查看相关程序....
最短路径分析的控件,首先使用regsvr32 程序注册该动态连接库,然后在vb中直接使用该动态链接库.程序中有相关说明,具体文件可以查看相关程序.-shortest path analysis controls, the first to use regsvr32 procedures for the registration of the dynamic link library, and then vb direct use of the dynamic link library. Procedures are related note, can view specific documents related procedures.
- 2022-08-13 09:00:41下载
- 积分:1
-
自己编写的对于NMEA0813解析的C#代码,提供对GPGGA,GPRMC数据的解析...
自己编写的对于NMEA0813解析的C#代码,提供对GPGGA,GPRMC数据的解析-I have written for NMEA0813 resolution C# Code, provide GPGGA, GPRMC data analysis
- 2022-12-24 09:30:03下载
- 积分: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
-
基于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
-
使用C语言编写的计算GPS卫星在任意时刻的三维速度的程序
使用C语言编写的计算GPS卫星在任意时刻的三维速度的程序-Calculation of GPS satellites at any time three-dimensional velocity
- 2023-04-14 08:15:03下载
- 积分:1
-
NMEA 0182 faq file in detail
NMEA 0182 faq file in detail
- 2023-08-16 13:15:03下载
- 积分:1
-
0183协议的解析程序的源代码,可以用在定位,导航,监控等方面
0183协议的解析程序的源代码,可以用在定位,导航,监控等方面-0183 agreement analytic program"s source code can be used in positioning, navigation, surveillance etc.
- 2022-01-31 06:35:05下载
- 积分: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