Uses of Class
adams.data.timeseries.TimeseriesPoint
-
Packages that use TimeseriesPoint Package Description adams.data.filter adams.data.io.input adams.data.timeseries adams.flow.source adams.flow.transformer adams.gui.visualization.timeseries -
-
Uses of TimeseriesPoint in adams.data.filter
Methods in adams.data.filter that return TimeseriesPoint Modifier and Type Method Description protected TimeseriesPoint
TimeseriesEquiDistance. interpolate(long time, TimeseriesPoint left, TimeseriesPoint right)
Returns a TimeseriesPoint with interpolated value.Methods in adams.data.filter that return types with arguments of type TimeseriesPoint Modifier and Type Method Description protected List<TimeseriesPoint>
TimeseriesChangeResolution. getClosestPoints(long timestamp, List<TimeseriesPoint> data, int numpoints)
Determines the closest points for the given timestamp.Methods in adams.data.filter with parameters of type TimeseriesPoint Modifier and Type Method Description protected TimeseriesPoint
TimeseriesEquiDistance. interpolate(long time, TimeseriesPoint left, TimeseriesPoint right)
Returns a TimeseriesPoint with interpolated value.Method parameters in adams.data.filter with type arguments of type TimeseriesPoint Modifier and Type Method Description protected List<TimeseriesPoint>
TimeseriesChangeResolution. getClosestPoints(long timestamp, List<TimeseriesPoint> data, int numpoints)
Determines the closest points for the given timestamp.protected double
TimeseriesChangeResolution. interpolate(double timestamp, List<TimeseriesPoint> closest, int poly)
Interpolates the value.protected double
TimeseriesChangeResolution. L(double timestamp, List<TimeseriesPoint> closest, int m)
-
Uses of TimeseriesPoint in adams.data.io.input
Methods in adams.data.io.input that return TimeseriesPoint Modifier and Type Method Description protected TimeseriesPoint
SpreadSheetTimeseriesReader. readDataPoint(SpreadSheet sheet)
Reads the next timeseries data point. -
Uses of TimeseriesPoint in adams.data.timeseries
Classes in adams.data.timeseries with type parameters of type TimeseriesPoint Modifier and Type Class Description class
Timeseries<P extends TimeseriesPoint,R extends Report,S extends TimeseriesStatistic>
Container for a full timeseries.class
TimeseriesPointComparator<P extends TimeseriesPoint>
A comparator for timeseries points.Fields in adams.data.timeseries declared as TimeseriesPoint Modifier and Type Field Description protected TimeseriesPoint
Timeseries. m_MaxValue
point of greatest value.protected TimeseriesPoint
Timeseries. m_MinValue
point of smallest value.Methods in adams.data.timeseries that return TimeseriesPoint Modifier and Type Method Description TimeseriesPoint
Timeseries. find(Date timestamp)
Returns the TimeseriesPoint with the exact timestamp, null if not found.TimeseriesPoint
Timeseries. findClosest(Date timestamp)
Returns the TimeseriesPoint with a timestamp closest to the one provided.TimeseriesPoint
Timeseries. getMaxValue()
Get point with greatest timeseries value.TimeseriesPoint
Timeseries. getMinValue()
Get point with smallest timeseries value.Methods in adams.data.timeseries with parameters of type TimeseriesPoint Modifier and Type Method Description int
TimeseriesPointComparator. compare(TimeseriesPoint o1, TimeseriesPoint o2)
Compares its two arguments for order.static int
TimeseriesUtils. findTimestamp(List<TimeseriesPoint> points, TimeseriesPoint p)
Returns the index in points of the given timeseries point, -1 if not found.Method parameters in adams.data.timeseries with type arguments of type TimeseriesPoint Modifier and Type Method Description protected static void
TimeseriesUtils. add(Hashtable<Date,TimeseriesPoint> pool, Timeseries s)
Merges the given with the current data pool.static int
TimeseriesUtils. findClosestTimestamp(List<TimeseriesPoint> points, Date timestamp)
Returns the index in points closest to the given timestamp.static int[]
TimeseriesUtils. findEnclosingTimestamps(List<TimeseriesPoint> points, Date timestamp)
Returns the indices of points in m_Points that enclose the given timestamp.static int
TimeseriesUtils. findTimestamp(List<TimeseriesPoint> points, TimeseriesPoint p)
Returns the index in points of the given timeseries point, -1 if not found.static int
TimeseriesUtils. findTimestamp(List<TimeseriesPoint> points, Date timestamp)
Returns the index in points of the given timestamp.protected static Timeseries
TimeseriesUtils. getHeader(List<TimeseriesPoint> points)
Creates a header based on the given timeseries points.static double[]
TimeseriesUtils. toDoubleArray(List<TimeseriesPoint> data)
Returns the amplitudes as double array. -
Uses of TimeseriesPoint in adams.flow.source
Methods in adams.flow.source that return TimeseriesPoint Modifier and Type Method Description protected TimeseriesPoint
TimeseriesDbReader. readDataPoint()
Reads the next timeseries data point. -
Uses of TimeseriesPoint in adams.flow.transformer
Methods in adams.flow.transformer that return TimeseriesPoint Modifier and Type Method Description protected TimeseriesPoint
TimeseriesDbReader. readDataPoint(ResultSet rs)
Reads the next timeseries data point. -
Uses of TimeseriesPoint in adams.gui.visualization.timeseries
Fields in adams.gui.visualization.timeseries declared as TimeseriesPoint Modifier and Type Field Description protected TimeseriesPoint
SelectedTimestampPaintlet. m_Point
the point to paint.Methods in adams.gui.visualization.timeseries that return TimeseriesPoint Modifier and Type Method Description TimeseriesPoint
SelectedTimestampPaintlet. getPoint()
Returns the currently set point to highlight.Methods in adams.gui.visualization.timeseries that return types with arguments of type TimeseriesPoint Modifier and Type Method Description protected List<TimeseriesPoint>
TimeseriesPointHitDetector. isHit(MouseEvent e)
Checks for a hit.Methods in adams.gui.visualization.timeseries with parameters of type TimeseriesPoint Modifier and Type Method Description void
SelectedTimestampPaintlet. setPoint(TimeseriesPoint value)
Sets the point to highlight, automatically repaints the panel.Method parameters in adams.gui.visualization.timeseries with type arguments of type TimeseriesPoint Modifier and Type Method Description protected String
TimeseriesPointHitDetector. processHit(MouseEvent e, List<TimeseriesPoint> hit)
Performs the action when a hit is detected.
-