当前位置:网站首页>M design of GPS data longitude and latitude height analysis and Kalman analysis software based on matlab-GUI
M design of GPS data longitude and latitude height analysis and Kalman analysis software based on matlab-GUI
2022-07-19 07:07:00 【I love c programming】
Catalog
1. Algorithm description and some source code
2. Preview of some simulation drawings
3. Source code acquisition method
1. Algorithm description and some source code
Longitude, latitude and altitude from GPS In signal GPGGA The data of . So extracting these three information is mainly for GPGGA The data in the .GPGGA The data format of is as follows :
![]()


clc;
clear;
close all;
warning off;
DATA_TYPE = 'GPGGA';% Select the type of data you want to keep
fidin = fopen('data.txt','r');
% Reading data
tline = func_GPS_read(fidin);
% In the data GPGGA Save part of the data , The rest of the data is removed , In practice, , You can also change the following parameters , Select other data
Save_data = func_save_usefull_data(tline,DATA_TYPE);
% Extract dimension
% data fetch
Dimensions = func_read_Dimensions(Save_data);
% Remove... From the data 0 value
Dimensions(find(Dimensions == 0)) = [];
% Kalman filtering
Dimensions_kalman = func_kalman(Dimensions);
figure;
subplot(211);plot(Dimensions);title(' dimension ');
subplot(212);plot(Dimensions_kalman);title(' dimension kalman');
xlabel('times');
ylabel('Dimensions');
% Extract longitude
% data fetch
longitude = func_read_longitude(Save_data);
% Remove... From the data 0 value
longitude(find(longitude == 0)) = [];
% Kalman filtering
longitude_kalman = func_kalman(longitude);
figure;
subplot(211);plot(longitude);title(' longitude ');
subplot(212);plot(longitude_kalman);title(' longitude kalman');
xlabel('times');
ylabel('longitude');
% Extraction height
% data fetch
Height = func_read_Height(Save_data);
Height(find(Height == 0)) = [];
% Kalman filtering
Height_kalman = func_kalman(Height);
figure;
subplot(211);plot(Height);title(' Height ');
subplot(212);plot(Height_kalman);title(' Height kalman');
xlabel('times');
ylabel('Height');
2. Preview of some simulation drawings




3. Source code acquisition method
Get the way 1:
Click the download link :
Access method 2:
Blog resource item , Search for resources with the same name as blog .
Access method 3:
If the download link fails , Blogger wechat contact .
边栏推荐
- CDN是什么?使用CDN有什么优势?
- m3GPP-LTE通信网络中认知家庭网络Cognitive-femtocell性能matlab仿真
- What does ack attack mean? How to defend ack attack
- m基于matlab的DQPSK调制解调技术的仿真
- What if the website is hijacked?
- FreeBSD 12 domestic source speed up PKG and ports take a note
- 基于小波域的隐马尔可夫树模型的图像去噪方法的matlab实现代码
- The principle of SYN Flood attack and the solution of SYN Flood Attack
- Tower of Hanoi 2 (function)
- 字典、元组和列表的使用及区别,
猜你喜欢

Alibaba cloud Hangzhou arm ECS performance evaluation

Intranet penetration server building tutorial, NPs use tutorial

字典、元组和列表的使用及区别,

Text three swordsman's awk command -- interception

m基于matlab的超宽带MIMO雷达对目标的检测仿真,考虑时间反转

m基于matlab的DQPSK调制解调技术的仿真

Ucloud Shanghai arm cloud server evaluation

Legendary game setup tutorial

爬虫基础—Session和Cookie

基于simulink的转速反馈单闭环直流调速系统
随机推荐
Utilisation et différenciation des dictionnaires, des tuples et des listes,
[automated testing] - robotframework practice (III) writing test cases
数据分析及可视化——京东上销量最高的鞋子
Performance evaluation and comparison of Huawei cloud Kunpeng arm ECs and x86 ECS
剑指Offer刷题记录——Offer 06.从尾到头打印链表
基于simulink的转速反馈单闭环直流调速系统
快速理解重定向
How do you know whether the network needs to use advanced anti DDoS server? How to choose the computer room is also very important, as well as the stability of the later business
快速掌握sort命令,tr命令
类与super、继承
Servlet 笔记
Review summary of MySQL
Quickly master the sort command and tr command
Alibaba cloud Hangzhou arm ECS performance evaluation
Hermit crab and anemone
内网穿透服务器搭建教程,NPS使用教程
m基于matlab的BTS天线设计,带GUI界面
Tianyi cloud Hangzhou virtual machine (VPS) performance evaluation
Zuul路由的映射规则配置
配置树莓派3b+搭建个人网站