WMS:WMLibTimeSeriesPoint: Difference between revisions

From XMS Wiki
Jump to navigationJump to search
No edit summary
Line 5: Line 5:
== Functions ==
== Functions ==


*'''public TimeSeriesPoint(System.DateTime a_time, double a_value)'''
; public TimeSeriesPoint(System.DateTime a_time, double a_value) : This function is the constructor function for an instance of a '''TimeSeriesPoint''' class.  Pass this function a date/time (a_date) and a value (a_value) and a time series point that can be used with rainfall data will be created with the specified value.  See the example in the [[WMS:WMLib|introduction]] as an example of how this function is used.
 
This function is the constructor function for an instance of a '''TimeSeriesPoint''' class.  Pass this function a date/time (a_date) and a value (a_value) and a time series point that can be used with rainfall data will be created with the specified value.  See the example in the [[WMS:WMLib|introduction]] as an example of how this function is used.


{{WMLibMain}}
{{WMLibMain}}

Revision as of 22:22, 28 September 2016

Description

The public class TimeSeriesPoint class manages information for a time series point, such as a point in a cumulative rainfall distribution or a point in a hydrograph.

Functions

public TimeSeriesPoint(System.DateTime a_time, double a_value)
This function is the constructor function for an instance of a TimeSeriesPoint class. Pass this function a date/time (a_date) and a value (a_value) and a time series point that can be used with rainfall data will be created with the specified value. See the example in the introduction as an example of how this function is used.