当前位置:网站首页>GPS from getting started to giving up (16), satellite clock error and satellite ephemeris error
GPS from getting started to giving up (16), satellite clock error and satellite ephemeris error
2022-07-06 21:57:00 【Chasing wind】
One 、 Satellite clock error
GPS Satellite clock error ( Referred to as satellite clock error ) Refer to GPS Satellite clock and GPS The difference between standard times . Even though GPS The satellite adopts high precision Atomic clock to ensure the accuracy of the clock , It has long-term stability ; But atomic clocks still have the problems of frequency shift and aging , Cause them to interact with GPS There will be a difference between standard time . This deviation must be corrected . Of course, the others GNSS Systems such as Beidou will have similar problems , Here we only use GPS For example, .
Let's talk about the treatment of the relativistic effect correction term in the formula . Relativistic effect includes special relativistic effect and general relativistic effect . Even though GPS The satellite has adjusted the clock frequency according to the relativistic effect , But because the satellite orbit is not a regular circle , It's oval , Therefore, the influence of relativistic effect on the frequency of clock at different orbital positions is different , Therefore, it needs to be revised .
GPS The relativistic correction given in the interface description document of is :
Two 、 Satellite ephemeris error
When the satellite is in space , Its orbit will be affected by various factors , Such as the force caused by the uneven mass of the earth 、 Tidal influence 、 Atmospheric drag 、 Sunlight pressure and so on , Resulting in complex and irregular satellite orbit . Therefore, there is always a deviation between the satellite position calculated through the ephemeris and the actual position of the satellite , We call this error satellite ephemeris error .
The error of satellite ephemeris belongs to systematic error . It is a three-dimensional vector , It can be divided into three directions : Radial component 、 Tangential component and normal component . among Radial component It is the component in the direction of the connection between the receiver and the satellite ; The tangential component is perpendicular to the radial component in the satellite orbital plane to the direction of the satellite's flight speed ; The normal component is perpendicular to the orbital plane . Of these three components , The influence of tangential classification and normal component on pseudo range observation can be basically ignored , The radial component mainly affects the pseudo range observation .
At present, the commonly used ephemeris is Broadcast ephemeris and precision ephemeris
- Broadcast ephemeris It's broadcast by positioning satellite . Its accuracy is unstable , Subject to ephemeris age 、 Whether the track is adjusted 、 Whether it is in the shadow of the earth and the moon, and many other factors are accidental for users . Broadcast ephemeris error is current GPS One of the important error sources of positioning . At present, the satellite ephemeris error calculated according to the broadcast ephemeris can be reduced to decimeter level .
- Precise ephemeris It is the satellite orbit information used for satellite precise positioning . It consists of observation data from several satellite tracking stations , After the post-processing, it can be calculated . current GPS There are mainly two kinds of precise ephemeris : By the Defense Mapping Agency (DMA) The precision ephemeris produced by IGS Precision ephemeris produced . The ephemeris accuracy of the former is about 2cm, The ephemeris accuracy of the latter is about 5cm.
3、 ... and 、 Error elimination
Satellite clock error and satellite ephemeris error are the same for all receivers , So you can use Difference To eliminate .
double geodist(const double *rs, const double *rr, double *e)
{
double r;
int i;
if (norm(rs,3)<RE_WGS84) return -1.0;
for (i=0;i<3;i++) e[i]=rs[i]-rr[i];
r=norm(e,3);
for (i=0;i<3;i++) e[i]/=r;
return r+OMGE*(rs[0]*rr[1]-rs[1]*rr[0])/CLIGHT;
}
边栏推荐
- Redistemplate common collection instructions opsforlist (III)
- 华为在多个行业同时出击,吓人的技术让欧美企业瑟瑟发抖
- Explain ESM module and commonjs module in simple terms
- Guava: three ways to create immutablexxx objects
- Happy sound 2[sing.2]
- 中国白酒的5场大战
- Search map website [quadratic] [for search map, search fan, search book]
- 十一、服务介绍及端口
- guava:创建immutableXxx对象的3种方式
- Mysql相关术语
猜你喜欢
基于LM317的可调直流电源
C# 如何在dataGridView里设置两个列comboboxcolumn绑定级联事件的一个二级联动效果
Sparkshuffle process and Mr shuffle process
中国白酒的5场大战
guava:Collections. The collection created by unmodifiablexxx is not immutable
Yuan Xiaolin: safety is not only a standard, but also Volvo's unchanging belief and pursuit
LeetCode:1189. The maximum number of "balloons" -- simple
Shell product written examination related
Tiktok will push the independent grass planting app "praiseworthy". Can't bytes forget the little red book?
Unity3D学习笔记6——GPU实例化(1)
随机推荐
新入职一家公司需要去实践和注意的内容
1D convolution detail
PostgreSQL modifies the password of the database user
Leetcode topic [array] -118 Yang Hui triangle
[go][转载]vscode配置完go跑个helloworld例子
Kohana 数据库
Why is the cluster mode of spark on Yan better than the client mode
小满网络模型&http1-http2 &浏览器缓存
Reptile practice (V): climbing watercress top250
Leetcode learning records (starting from the novice village, you can't kill out of the novice Village) ---1
MySQL - transaction details
Shell product written examination related
[Yu Yue education] higher mathematics of Nanchang University (2) reference materials
SQL:存储过程和触发器~笔记
The golden age of the U.S. technology industry has ended, and there have been constant lamentations about chip sales and 30000 layoffs
【MySQL】Online DDL详解
Checkpoint of RDD in spark
Caching strategies overview
Vit paper details
Aggregate function with key in spark