当前位置:网站首页>GPS从入门到放弃(十六)、卫星时钟误差和卫星星历误差
GPS从入门到放弃(十六)、卫星时钟误差和卫星星历误差
2022-07-06 13:46:00 【追捕的风】
一、卫星时钟误差
GPS卫星时钟误差(简称卫星钟差)是指GPS卫星时钟与GPS标准时间之间的差值。尽管GPS卫星采用了高精度的原子钟来保证时钟的精度,具有比较长期的稳定性;但原子钟依然有频率偏移和老化的问题,导致它们与GPS标准时之间会存在一个差异。这个偏差是必须加以修正的。当然其他的GNSS系统如北斗也会有类似的问题,这里我们仅以GPS为例说明。
下面说一下对于式中的相对论效应修正项的处理。相对论效应包含狭义相对论效应和广义相对论效应。尽管GPS卫星已经按照相对论效应对时钟频率进行了调整,但由于卫星轨道并非是规则的圆形,而是椭圆形,所以相对论效应在不同轨道位置对时钟的频率影响大小是不同的,因此还需要修正。
GPS的接口说明文档中给出的相对论修正项为:
二、卫星星历误差
卫星在空间运行时,其轨道会收到各种因素的影响,如地球质量不均匀引起的作用力、潮汐影响、大气阻力、太阳光压等等,造成卫星轨道复杂且不规则。所以通过星历计算出的卫星位置与卫星实际位置总会有偏差,我们把这个误差叫做卫星星历误差。
卫星星历误差属于系统误差。它是一个三维向量,可以分为三个方向的分量:径向分量、切向分量和法向分量。其中径向分量是在接收机和卫星连线方向上的分量;切向分量在卫星轨道平面内与径向分量垂直指向卫星的飞行速度方向;法向分量则垂直于轨道平面。这三个分量中,切向分类和法向分量对伪距观测量的影响基本可以忽略,主要影响伪距观测量的是径向分量。
目前常用的星历有广播星历和精密星历
- 广播星历是定位卫星播放的。其精度不稳定,受星历年龄、轨道是否调整、是否处于地球和月亮的阴影区等很多对用户而言是偶然因素的影响。广播星历误差是当前GPS定位的重要误差来源之一。目前根据广播星历所计算出来的卫星星历误差已经可以降低到分米级。
- 精密星历是为卫星精密定位所使用的卫星轨道信息。其由若干卫星跟踪站的观测数据,经事后处理算得。目前的GPS精密星历主要有两种:由美国国防制图局(DMA)生产的精密星历以及由IGS生产的精密星历。前者的星历精度约为2cm,后者的星历精度约为5cm。
三、误差消除
卫星时钟误差和卫星星历误差对所有的接收机都是一样的,因此可以通过差分的方式来消除。
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;
}
边栏推荐
- MySQL - transaction details
- LeetCode:1189. The maximum number of "balloons" -- simple
- MySQL removes duplicates according to two fields
- Basic introduction of figure
- 跨分片方案 总结
- Univariate cubic equation - relationship between root and coefficient
- 强化学习-学习笔记5 | AlphaGo
- Uni app app half screen continuous code scanning
- LeetCode学习记录(从新手村出发之杀不出新手村)----1
- First batch selected! Tencent security tianyufeng control has obtained the business security capability certification of the ICT Institute
猜你喜欢
JPEG2000 matlab source code implementation
C how to set two columns comboboxcolumn in DataGridView to bind a secondary linkage effect of cascading events
The golden age of the U.S. technology industry has ended, and there have been constant lamentations about chip sales and 30000 layoffs
Summary of cross partition scheme
numpy 下载安装
【MySQL】Online DDL详解
中国白酒的5场大战
[Chongqing Guangdong education] Information Literacy of Sichuan Normal University: a new engine for efficiency improvement and lifelong learning reference materials
Dialogue with Jia Yangqing, vice president of Alibaba: pursuing a big model is not a bad thing
MPLS experiment
随机推荐
基于LM317的可调直流电源
[Chongqing Guangdong education] Information Literacy of Sichuan Normal University: a new engine for efficiency improvement and lifelong learning reference materials
11、 Service introduction and port
It's not my boast. You haven't used this fairy idea plug-in!
The golden age of the U.S. technology industry has ended, and there have been constant lamentations about chip sales and 30000 layoffs
中国白酒的5场大战
基于InsightFace的高精度人脸识别,可直接对标虹软
One line by line explanation of the source code of anchor free series network yolox (a total of ten articles, you can change the network at will after reading it, if you won't complain to me)
c语言char, wchar_t, char16_t, char32_t和字符集的关系
Set up a time server
Some problems about the use of char[] array assignment through scanf..
guava:创建immutableXxx对象的3种方式
快讯:飞书玩家大会线上举行;微信支付推出“教培服务工具箱”
[go][reprint]vscode run a HelloWorld example after configuring go
Basic introduction of figure
Reinforcement learning - learning notes 5 | alphago
1292_FreeROS中vTaskResume()以及xTaskResumeFromISR()的实现分析
Binary tree node at the longest distance
Write a rotation verification code annotation gadget with aardio
C语言:#if、#def和#ifndef综合应用