%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% FILENAME: gpsPlot.m
% PURPOSE:  Plot gps data
% DATE:     00/1/19
% AUTHOR:   Initial; rsm
% NOTES:
% MODS:
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Units and Fundamental Constants:
  units

  str = [', Case:',run_name, ' ',myDate];

  if exist( 'gpsFig1' ) ~= 1
      gpsFig1 = figure;
  else 
      figure( gpsFig1 ); 
  end
    
  set( gpsFig1, 'name', 'GPS Position', ...
       'DeleteFcn', 'clear gpsFig1' );
  set(gcf,'position',position)
  clf
  plot(gps(:,latitude), gps(:,longitue),'.')