%homepos.m

clear all
load('/home/dunlap/home/g12/gpssub.mat');
n = length(utc);
nss = 1; % 10 minutes
nss = 6; % 1 hour
j = 1:nss:n;
clf
plot(lon(j),lat(j),'r-')
grid on
hold on;

%pause

%for i=j
%if isfinite(utc(i))
%        fprintf('%s %.6f %.6f\n',datestr(uxt(i),0),lat(i),lon(i));
%end
%end

