|
|
%ProcessGnssMeasScript.m, script to read GnssLogger output, compute and plot: |
|
|
% pseudoranges, C/No, and weighted least squares PVT solution |
|
|
% |
|
|
% you can run the data in pseudoranges log files provided for you: |
|
|
prFileName = 'pseudoranges_log_2016_06_30_21_26_07.txt'; %with duty cycling, no carrier phase |
|
|
% prFileName = 'pseudoranges_log_2016_08_22_14_45_50.txt'; %no duty cycling, with carrier phase |
|
|
% as follows |
|
|
% 1) copy everything from GitHub google/gps-measurement-tools/ to |
|
|
% a local directory on your machine |
|
|
% 2) change 'dirName = ...' to match the local directory you are using: |
|
|
dirName = '~/Documents/MATLAB/gpstools/opensource/demoFiles'; |
|
|
% 3) run ProcessGnssMeasScript.m script file |
|
|
|
|
|
%Author: Frank van Diggelen |
|
|
%Open Source code for processing Android GNSS Measurements |
|
|
|
|
|
%% data |
|
|
%To add your own data: |
|
|
% save data from GnssLogger App, and edit dirName and prFileName appropriately |
|
|
%dirName = 'put the full path for your directory here'; |
|
|
%prFileName = 'put the pseudoranges log file name here'; |
|
|
|
|
|
%% parameters |
|
|
param.llaTrueDegDegM = []; |
|
|
%enter true WGS84 lla, if you know it: |
|
|
param.llaTrueDegDegM = [37.422578, -122.081678, -28];%Charleston Park Test Site |
|
|
|
|
|
%% Set the data filter and Read log file |
|
|
dataFilter = SetDataFilter; |
|
|
[gnssRaw,gnssAnalysis] = ReadGnssLogger(dirName,prFileName,dataFilter,param); |
|
|
|
|
|
%% Get online ephemeris from Nasa ftp, first compute UTC Time from gnssRaw: |
|
|
fctSeconds = 1e-3*double(gnssRaw.allRxMillis(end)); |
|
|
gpsTime = [0,0]; |
|
|
gpsTime(1) = floor(fctSeconds./GpsConstants.WEEKSEC); |
|
|
gpsTime(2) = fctSeconds - gpsTime(1)*GpsConstants.WEEKSEC; |
|
|
utcTime = Gps2Utc(gpsTime); |
|
|
allGpsEph = GetNasaHourlyEphemeris(utcTime,dirName); |
|
|
|
|
|
%% process raw measurements, compute pseudoranges: |
|
|
[gnssMeas] = ProcessGnssMeas(gnssRaw); |
|
|
|
|
|
%% plot pseudoranges and pseudorange rates |
|
|
h1 = figure; |
|
|
[colors] = PlotPseudoranges(gnssMeas,prFileName); |
|
|
h2 = figure; |
|
|
PlotPseudorangeRates(gnssMeas,prFileName,colors); |
|
|
h3 = figure; |
|
|
PlotCno(gnssMeas,prFileName,colors); |
|
|
|
|
|
%% compute WLS position and velocity |
|
|
gpsPvt = GpsWlsPvt(gnssMeas,allGpsEph); |
|
|
|
|
|
%% plot Pvt results |
|
|
h4 = figure; |
|
|
ts = 'Raw Pseudoranges, Weighted Least Squares solution'; |
|
|
PlotPvt(gpsPvt,prFileName,param.llaTrueDegDegM,ts); drawnow; |
|
|
h5 = figure; |
|
|
PlotPvtStates(gpsPvt,prFileName); |
|
|
|
|
|
%% Plot Accumulated Delta Range |
|
|
if any(any(isfinite(gnssMeas.AdrM) & gnssMeas.AdrM~=0)) |
|
|
[gnssMeas]= ProcessAdr(gnssMeas); |
|
|
h6 = figure; |
|
|
PlotAdr(gnssMeas,prFileName,colors); |
|
|
[adrResid]= GpsAdrResiduals(gnssMeas,allGpsEph,param.llaTrueDegDegM);drawnow |
|
|
h7 = figure; |
|
|
PlotAdrResids(adrResid,gnssMeas,prFileName,colors); |
|
|
end |
|
|
%% end of ProcessGnssMeasScript |
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
|
% Copyright 2016 Google Inc. |
|
|
% |
|
|
% Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
% you may not use this file except in compliance with the License. |
|
|
% You may obtain a copy of the License at |
|
|
% |
|
|
% http://www.apache.org/licenses/LICENSE-2.0 |
|
|
% |
|
|
% Unless required by applicable law or agreed to in writing, software |
|
|
% distributed under the License is distributed on an "AS IS" BASIS, |
|
|
% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
% See the License for the specific language governing permissions and |
|
|
% limitations under the License.
|
|
|
|