当前位置:网站首页>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 .
边栏推荐
- Sed command of text three swordsman -- text replacement; Grep command - text filtering
- Regular expression, generator, iterator
- What do you need to build a website
- 剑指Offer刷题记录——Offer 07.重建二叉树
- What role does 5g era server play in this?
- My world 1.18.1 forge version open service tutorial, can install mod, with panel
- Performance evaluation and comparison of lightweight application servers of major cloud service manufacturers, Alibaba cloud, Tencent cloud, Huawei cloud, and ucloud
- Xiaodi network security - Notes (2)
- What happened to redraiment
- 快速掌握sort命令,tr命令
猜你喜欢

Arm server building my world (MC) version 1.18.2 private server tutorial

阿里云 杭州 ARM 云服务器性能评测

PyTorch学习日记(二)

Intranet penetration server building tutorial, NPs use tutorial

What role does 5g era server play in this?

Performance evaluation and comparison of lightweight application servers of major cloud service manufacturers, Alibaba cloud, Tencent cloud, Huawei cloud, and ucloud

4.IDEA的安装与使用

论文阅读:Deep Residual Shrinkage Networksfor Fault Diagnosis

Xiaodi network security - Notes (5)

Servlet 笔记
随机推荐
5G时代服务器在这里面起着什么作用?
Xiaodi network security - Notes (4)
类与super、继承
Steam game server configuration selection IP
剑指Offer刷题记录——Offer 05. 替换空格
传奇手游怎么开服?需要投资多少?需要那些东西?
Steam game high frequency i9-12900k build cs:go server
Quickly learn to use cut command and uniq command
Homework
1. What is a server?
Intranet penetration server building tutorial, NPs use tutorial
数据分析及可视化——京东上销量最高的鞋子
How to download free papers from CNKI
What role does 5g era server play in this?
cookie、session的配置和使用
[automated testing] - robotframework practice (I) building environment
Class and super, inheritance
Manual string comparison (pointer question)
IP103.53.125.xxx IP地址段 详解
[untitled]