데이터 구독 형식: 해저면 탐지
해저면 탐지에 대한 데이터 구독 문자열은 BottomDetection입니다.
입력
파라미터 범위 기본값 단위
UpperDetectorLimit (0,20000) 0 m
LowerDetectorLimit (0,20000) 1000 m
BottomBackstep (-200,100) -50 dB
출력
struct StructBottomDepthHeader
  {
  DWORDLONG dlTime;
  };

struct StructBottomDepthData
  {
  double dBottomDepth; // detected bottom depth [meter]
  double dReflectivity; // bottom surface backscatter [dB]
  double dVesselLogDistance; // sailed distance [nmi]
  };

struct StructBottomDepth
  {
  StructBottomDepthHeader BottomDepthHeader;
  StructBottomDepthData BottomDepthData;
  };
BottomDetection 구독 문자열 작성:
BottomDetection,
ChannelID=<ChannelID>,
UpperDetectorLimit=3.0,
LowerDetectorLimit=500.0,
BottomBackstep=-60.0