Directory names from file.c

MLocal FilePtr	files[] =		/* File ptrs and names for outputs  */
{ {NULLF, 0, "error"}, {NULLF, 0, ""}, {NULLF, 0, "atlas"}, 
  {NULLF, 0, "oasis"}, {NULLF, 0, "par"}, {NULLF, 0, "ctd"},
  {NULLF, 0, "spectro"}, {NULLF, 0, "adcp"}, {NULLF, 0, "gps"},
  {NULLF, 0, "modem"}, {NULLF, 0, "pco2"}, {NULLF, 0, "ctd2"},
  {NULLF, 0, "ctd3"}, {NULLF, 0, "spectro10"}, {NULLF, 0, "spectro20"},
  {NULLF, 0, "nitrate"}, {NULLF, 0, "nitrate2"}, {NULLF, 0, "specprr"},
  {NULLF, 0, "satlantic"}, {NULLF, 0, "gps"}, {NULLF, 0, "nrl"},
  {NULLF, 0, "oxygen"}, {NULLF, 0, "fluor"}, {NULLF, 0, "transmiss"},
  {NULLF, 0, "no3"}, {NULLF, 0, "no3.2"}, {NULLF, 0, "ac9"},
  {NULLF, 0, "pump"}, {NULLF, 0, "pump"}, {NULLF, 0, "shutter0"},
  {NULLF, 0, "shutter1"}, {NULLF, 0, "specprr.volts"}, {NULLF, 0, "metsys"},
  {NULLF, 0, "tstring"}, {NULLF, 0, "gf"}, {NULLF, 0, "microcat"},
  {NULLF, 0, "gps"}, {NULLF, 0, "abeta"}, {NULLF, 0, "cbeta"},
  {NULLF, 0, "hs2"}, {NULLF, 0, "hr1"}, {NULLF, 0, "hr2"}, {NULLF, 0, "hr3"},
  {NULLF, 0, "hr4"}, {NULLF, 0, "special1"}, {NULLF, 0, "special2"}
};


Instrument names for -i argument from extract.c

MLocal char	*sensor_names[] = 
{ "Empty", "Time", "ATLAS", "OASIS", "PAR", "CTD", "Spectro", "ADCP",
  "GPS", "Modem", "pCO2", "CTD2", "CTD3", "Spectro10", "Spectro20",
  "Nitrate", "Nitrate2", "SpecPRR", "Satlantic", "GPS", "NRL", "Oxygen",
  "Fluorometer", "Transmissometer", "NO3", "NO32", "AC9", "CO2Pump",
  "H2OPump", "Shutter0", "Shutter1", "SpecPRRVolts", "Metsys", "TString",
  "GF", "MicroCat", "GPS", "abeta", "cbeta", "hs2", "hr", "hr2", "hr3", "hr4" };


From decode.h

/*	Data Logging Record Types	*/
#define LOG_EMPTY	0		/* Unused - empty record	    */
#define ERRORF		0		/* Also used for error file ptr	    */
#define OASIS_STAT	1		/* OASIS on/off status		    */
#define ATLAS		2		/* atlas record			    */
#define OASIS_CAN	3		/* OASIS battery, temp, press	    */
#define PAR		4		/* PAR sensors			    */
#define CTD		5		/* CTD Data			    */
#define SPECTRO		6		/* MER Spectroradiometer	    */
#define ADCP		7		/* Acoustic Doppler		    */
#define GPS		8		/* Old style GPS (10^-3 minutes)    */
#define MODEM		9		/* Acoustic Modem		    */
#define PCO2		10		/* pCO2 sensor			    */
#define CTD2		11		/* Second CTD			    */
#define CTD3		12		/* Third CTD			    */
#define SPECTRO2	13		/* Second MER Spectroradiometer	    */
#define SPECTRO3	14		/* Third MER Spectroradiometer	    */
#define NO3		15		/* Nitrate sensor		    */
#define NO32		16		/* Second Nitrate sensor	    */
#define SPEC_PRR	17		/* PRR-600 Spectroradiometer	    */
#define SATLANTIC	18		/* Satlantic Spectroradiometer	    */
#define GPS_TYPE2	19		/* Style 2 GPS (10^-7 degrees)	    */
#define NRL		20		/* NRL satellite controller	    */
#define O2		21		/* Oxygen sensor		    */
#define FLUOR		22		/* Fluorometer			    */
#define TRANSMISS	23		/* Transmissometer		    */
#define NO3_DECODED	24		/* Nitrate sensor, decoded data	    */
#define NO3_DECODED2	25		/* Second Nitrate sensor, decoded   */
#define AC9		26		/* Oxygen sensor		    */
#define CO2_PUMP	27		/* pCO2 Pump			    */
#define H2O_PUMP	28		/* Water Pump			    */
#define SHUTTER0	29		/* Shutter 0 for PRR Spectro	    */
#define SHUTTER1	30		/* Shutter 1 for PRR Spectro	    */
#define SPEC_PRR_VOLTS	31		/* PRR-600 Spectro, in volts	    */
#define METSYS		32		/* Campbell Scientific Met Logger   */
#define TSTRING		33		/* Seabird Inductive Temp String    */
#define GNDFAULT	34		/* Serial Analog Ground Fault	    */
#define MICROCAT	35		/* Seabird serial microCat CTD	    */
#define GPS_TYPE3	36		/* Garmin GPS receiver		    */
#define HOBI_AB		37		/* HOBI Labs alpha-beta		    */
#define HOBI_CB		38		/* HOBI Labs c-beta		    */
#define HOBI_HS2	39		/* HOBI Labs HydroScat 2	    */
#define HOBI_HR1	40		/* HOBI Labs HydroRad file 1	    */
#define HOBI_HR2	41		/* HOBI Labs HydroRad file 2	    */
#define HOBI_HR3	42		/* HOBI Labs HydroRad file 3	    */
#define HOBI_HR4	43		/* HOBI Labs HydroRad file 4	    */
#define SPECIAL1	44		/* For temporary or test instruments*/
#define SPECIAL2	45		/* For temporary or test instruments*/
#define SENSORS		(SPECIAL2 + 1)	/* Number of sensors		    */
					/************************************/
