MATLAB对GPS allsecond和UT time进行转换

在利用MATLAB对GPS或者COSMIC数据处理时会遇到数据时间采用GPS Allsecond的情况。需要将其转换成UT Time,也就是年月日,时分秒。可以利用seconds函数进行转换。代码如下:

Start=datetime(1980,01,06,0,0,0);%start of GPS allsecond
AllSecondTime=1000;%allsecond of data
UTTime=Start+seconds(AllSecondTime);

你可能感兴趣的:(MATLAB对GPS allsecond和UT time进行转换)