How to read and plot Rinex messages?

조회 수: 34 (최근 30일)
Berhane Woldetensay
Berhane Woldetensay 2017년 5월 22일
편집: Remo Pillat 2024년 6월 19일
How to read and plot rinex messages like longitude, latitude, time, no.of SV(number of satellites) and GDOP from a raw file (obs/nav or ubx file) recorded/saved on my pc using matlab?
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 4월 3일
Youcef Ziat asks the same question, but for MATLAB 2015 specifically.

댓글을 달려면 로그인하십시오.

채택된 답변

Ryan Salvo
Ryan Salvo 2024년 6월 19일
편집: Remo Pillat 2024년 6월 19일
Starting in R2022a, the rinexread function supports reading RINEX V3 OBS and NAV files.
This Analyze GNSS Satellite Visibility example shows how to visualize the contents of a NAV file.

추가 답변 (2개)

Peter Spanik
Peter Spanik 2020년 12월 15일
Hello Berhane,
I created functions and classes to read observation and navigation RINEX files (see here https://github.com/spanikp/GNSS-toolbox). Also loading and processing of other GNSS-related files, like SP3 files or ANTEX, is supported. For example you can load RINEX to Matlab OBSRNX object as following:
addpath(genpath('path_to_GNSS-toolbox/src')); % Add path to toolbox functionality
obs = OBSRNX('your_rinex_filepath');
When the OBSRNX object is created in Matlab you can querry observations and perform slicing as you want. Toolbox support also downloading some useful navigation data like broadcast and precise ephemeris. You can also compute satellite positions and then visualize satellite paths (there is class Skyplot which can be used for that).
Any comments, issue reports and pull requests are welcome!
  댓글 수: 4
Mohamed Fathi
Mohamed Fathi 2021년 9월 6일
read rinex showing that error
Error defining property 'satpos' of class 'OBSRNX':
Class named 'SATPOS' is undefined or does not support property validation
Peter Spanik
Peter Spanik 2021년 9월 8일
Hi @Mohamed Fathi could you please create an issue at https://github.com/spanikp/GNSS-toolbox/issues? If you could provide also file which you want to load that would be great.

댓글을 달려면 로그인하십시오.


Yuebin Zhou
Yuebin Zhou 2017년 5월 25일
Reading Rinex is not a supported functionality that ships with MATLAB, but there may be 3rd party tools that enable you to do it, like the one below:
https://github.com/manromao/RINEX-reader

카테고리

Help CenterFile Exchange에서 Reference Applications에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by