Classes
- BitmaskEnum
- ComparableEnum
- Configuration
- DatumStreamMetadataRegistry
- Enum
- KeyedEnum
- MultiMap
- PropMap
Methods
-
<inner> datumDate(d)
-
Get a date associated with a "datum" style object.
This function will return a
Date
instance found via a property ond
according to these rules:date
- assumed to be aDate
object already and returned directlylocalDate
- a string inyyyy-MM-dd
form, optionally with a stringlocalTime
property for an associated time inHH:mm
form, treated as UTCcreated
- a string inyyyy-MM-dd HH:mm:ss.SSS'Z'
oryyyy-MM-dd'T'HH:mm:ss.SSS'Z'
form
These properties are commonly returned in results from the SolarNetwork API, and thus this method is a handy way to get the dates for those objects.
Note that the
localDate
andlocalTime
values are parsed as UTC. When formatted the date for display they should be formatted in UTC as well to preserve the expected value.Parameters:
Name Type Description d
Object the datum object to extract a date from
Returns:
the extracted date, or
null
if no date could be extracted- Type
- Date
-
<inner> datumForStreamData(data, meta)
-
Get a datum instance from a stream data array.
Parameters:
Name Type Description data
Array | String the datum stream data array (or JSON array value) to create a datum instance
meta
module:domain~DatumStreamMetadata | module:util~DatumStreamMetadataRegistry a metadata instance or metadata registry to decode with
Returns:
the datum, or
null
if one cannot be created -
<inner> rollingQueryDateRange(aggregate, aggregateTimeCount [, endDate])
-
Get a query range appropriate for a given aggregate level.
Returns an object with
start
andend
Date properties, using the givenendDate
parameter as the basis for calculating the start as an offset backwards in time based on the givenaggregate
level.When
aggregateTimeCount
will be treated as a "next higher" aggregate level fromaggregate
, like this:- <
Hour
:numHours
Hour
:numDays
Day
:numMonths
Month
:numYears
For example, you might like to render a chart using
TenMinute
aggregate data for the last 24 hours. You'd call this function like this:Parameters:
Name Type Argument Description aggregate
module:domain~Aggregation the aggregate level to get a query range for
aggregateTimeCount
number | module:util~DateRangeConfiguration the number of aggregate time units to use
endDate
Date <optional>
the ending date; if not provided the current date will be used
Returns:
the calculated date range
- <
-
<inner> streamDatumForData(data, meta)
-
Get a stream datum instance from a stream data array.
Parameters:
Name Type Description data
Array | String the datum stream data array (or JSON array value) to create a datum instance
meta
module:domain~DatumStreamMetadata | module:util~DatumStreamMetadataRegistry a metadata instance or metadata registry to decode with
Returns:
the datum, or
null
if one cannot be created
Type Definitions
-
DateRange
-
An object that defines a date range.
Type:
- Object
Properties:
Name Type Description start
Date the starting date
end
Date the ending date
timeUnit
module:domain~Aggregation the time unit used by the date range
timeCount
number the number of time units in the date range
aggregate
module:domain~Aggregation the aggregate to query with
-
DateRangeConfiguration
-
An object that defines levels of date range configuration.
Type:
- Object
Properties:
Name Type Argument Description numHours
number <optional>
the number of hours to use
numDays
number <optional>
the number of days to use
numMonths
number <optional>
the number of months to use
numYears
number <optional>
the number of years to use