Example #1
0
        } /* CountsByDepth */

        private float[]  GetDepthVolumeProfile()
        {
            String msg = "Retrieving Depth-Volume profile Station[" + cruise + "]  Station[" + station + "]  Deployment[" + deployment + "].";

            msgQueue.AddMsg(msg);
            statusMsgs.AddMsg(msg);
            PicesVolumeSampledStatList
                volStats = threadConn.InstrumentDataGetVolumePerMeterDepth(cruise, station, deployment, depthIncrement);

            if (volStats == null)
            {
                return(null);
            }

            return(volStats.ToArray());
        }