Contains subroutines to convert derived types to JSON Lines or Newline Delimited JSON format.
Generic derived type to JSON Lines converter.
Returns array of beats in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(beat_type), | intent(inout) | :: | beats(:) |
Array of beat types. |
Allocatable JSON Lines string.
Returns array of data points in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dp_type), | intent(inout) | :: | data_points(:) |
Data points array. |
Allocatable JSON Lines string.
Returns array of logs in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(log_type), | intent(inout) | :: | logs(:) |
Array of log types. |
Allocatable JSON Lines string.
Returns array of nodes in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(node_type), | intent(inout) | :: | nodes(:) |
Array of node types. |
Allocatable JSON Lines string.
Returns array of observations in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(observ_type), | intent(inout) | :: | observs(:) |
Array of observations. |
Allocatable JSON Lines string.
Returns array of sensors in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(sensor_type), | intent(inout) | :: | sensors(:) |
Array of sensors. |
Allocatable JSON Lines string.
Returns array of targets in JSON Lines format.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(target_type), | intent(inout) | :: | targets(:) |
Array of targets. |
Allocatable JSON Lines string.
Generic derived type to JSON Lines writer.
Writes beats to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(beat_type), | intent(inout) | :: | beats(:) |
Beat array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes data_points to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(dp_type), | intent(inout) | :: | data_points(:) |
Data point array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes logs to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(log_type), | intent(inout) | :: | logs(:) |
Log array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes nodes to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(node_type), | intent(inout) | :: | nodes(:) |
Node array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes observations to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(observ_type), | intent(inout) | :: | observs(:) |
Observation array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes sensors to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(sensor_type), | intent(inout) | :: | sensors(:) |
Sensor array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
Writes targets to file or standard output.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(target_type), | intent(inout) | :: | targets(:) |
Target array. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |