LMG0103 v2 readme  OCT 15, 2003

ADCP configuration:  

		- 8 meter depth bins (first bin 26)
		- 5 minute ensembles

Full ADCP onfiguration files are located in the cruise pages on our website:

http://www.esr.org/globec_index.html

 
Single Ping Data: Single ping data from this cruise have been archived, but are not yet available for distribution by ESR.
		
	
Quality:  The lmg0103 version 2 files contain data from the second attempt at processing the LMG0103 ADCP data (processing by Teri Chereskin at Scripps Institution of Oceanography).  Changes from version 1 data are fairly minor.  Changes include: re-editing, small calibration changes, and the inclusion of sound velocity probe (SVP) amplitude calibrations. For full processing info, read lg0103_meta.txt. This dataset was submitted to NODC by Teri Chereskin in OCT 2003.  Questions regarding this data set should be addressed to Susan Howard at howard@esr.org


Format:  The matfile contains the following variables:

u    		- east-west velocity
v    		- north-south velocity
bin_depth 	- depth of each u and v data point
dec_day		- time in decimal days ( Noon on Jan 1, 2001 is 0.5 )
year_base 	- year of cruise 
start_day 	- date and time of first data point
end_day 	- date and time of last data point
lon  		- longitude


Files exist on a 5 minute or 1 hour time base (1 hr data files have been averaged).
No averaging has been done on depth.



Note:  Bad or missing data is listed as NaN

To remove sections of NANs when lat and lon are NaNs, insert following lines of 
code into your matlab script:

badi=find(isnan(lon));
lon(badi)=[];
lat(badi)=[];
dec_day(badi)=[];
u(:,badi)=[];
v(:,badi)=[];



