TSTool / Command / SetInputPeriod
Overview
The SetInputPeriod
command sets the period used for reading time series data from files and datastores.
The default in most cases is to read/query all available data so that all data are available for analysis and data filling.
However, a shorter period may be desirable to increase performance (e.g., when processing real-time data)
or to force matching a historical period.
It may be necessary to set the input period if the default for a datastore is very short.
See also the SetOutputPeriod
command.
Command Editor
The following dialog is used to edit this command and illustrates the syntax of the command.
SetInputPeriod
Command Editor (see also the full-size image)
Command Syntax
The command syntax is as follows:
SetInputPeriod(Parameter="Value",...)
Command Parameters
Parameter | Description | Default |
---|---|---|
InputStart required |
The date/time to start reading/querying time series data, one of:
|
None – must be specified. |
InputEnd required |
The date/time to end reading/querying time series data. See the description for InputStart . |
None – must be specified. |
The CurrentToYear
and other special date/time values can be followed by modifiers,
which can be chained together in any order.
For example, the following will adjust the current time rounded to 5 minutes into the future and set the time zone to blank:
CurrentToMinute.Round(5min).RoundDirection(>).TimeZone()
CurrentTo* Modifiers
Modifier | Description |
---|---|
Round(interval) |
Round the current date/time to the specified interval (e.g., 5min , 6hour ). The default is to round back but see the RoundDirection() modifier. |
RoundDirection(<) RoundDirection(>) |
Indicate which way the Round() modifier should round the date/time, one of:
|
TimeZone(tzToSet) |
Set the time zone for the date/time to the specified time zone string. This does not shift the time value. It simply assigns the time zone string. Blank (no value) can be used to set the time zone to blank. Note that other commands may handle time zone in a specific way, for example when reading and writing data. |
Examples
See the automated tests.
Troubleshooting
See Also
SetOutputPeriod
commandSetOutputYearType
command