Package PamguardMVC
Class TFContourData
java.lang.Object
PamguardMVC.TFContourData
Data returned by a TFContourProvider. contains time and frequency 
 information about a contour in units of milliseconds and Hz.
- Author:
 - Doug Gillespie
 
- 
Constructor Summary
ConstructorsConstructorDescriptionTFContourData(long[] timesMillis, double[] ridgeFrequency, double[] lowFrequency, double[] highFrequecy)  - 
Method Summary
Modifier and TypeMethodDescriptionlong[]double[]double[]double[] 
- 
Constructor Details
- 
TFContourData
public TFContourData(long[] timesMillis, double[] ridgeFrequency, double[] lowFrequency, double[] highFrequecy)  
 - 
 - 
Method Details
- 
getContourTimes
public long[] getContourTimes()- Returns:
 - Array of times in milliseconds which describe the contour
 
 - 
getLowFrequency
public double[] getLowFrequency()- Returns:
 - the lower bound of the contour in Hz
 
 - 
getRidgeFrequency
public double[] getRidgeFrequency()- Returns:
 - the ridge frequency of the contour in Hz
 
 - 
getHighFrequecy
public double[] getHighFrequecy()- Returns:
 - the upper bound of the contour in Hz
 
 
 -