Generic derived type to CSV writer.
Writes beat to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(beat_type), | intent(inout) | :: | beat | Beat type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
Writes data point to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(dp_type), | intent(inout) | :: | data_point | Data point type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
Writes log to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(log_type), | intent(inout) | :: | log | Log type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV field separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV field separator. | 
Writes node to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(node_type), | intent(inout) | :: | node | Node type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
Writes observation to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(observ_type), | intent(inout) | :: | observ | Observation type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
Write sensor to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(sensor_type), | intent(inout) | :: | sensor | Sensor type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
Writes target to file or standard output.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(target_type), | intent(inout) | :: | target | Target type. | ||
| integer, | intent(in), | optional | :: | unit | File unit. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. | 
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. | |
| logical, | intent(in), | optional | :: | header | CSV header flag. | |
| character(len=1), | intent(in), | optional | :: | separator | CSV separator. |