Generic derived type from CSV reader.
Reads log from file or standard input. If no separator character is passed, the default one will be used (comma). If a quote character is given, separators within quoted strings will be ignored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(log_type), | intent(out) | :: | log |
Log type. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
|
character(len=1), | intent(in), | optional | :: | separator |
CSV separator. |
|
character(len=1), | intent(in), | optional | :: | quote |
CSV quote character. |
Reads node from file or standard input. If no separator character is passed, the default one will be used (comma). If a quote character is given, separators within quoted strings will be ignored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(node_type), | intent(out) | :: | node |
Node type. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
|
character(len=1), | intent(in), | optional | :: | separator |
CSV separator. |
|
character(len=1), | intent(in), | optional | :: | quote |
CSV quote character. |
Reads observation from file or standard input. If no separator character is passed, the default one will be used (comma). If a quote character is given, separators within quoted strings will be ignored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(observ_type), | intent(out) | :: | observ |
Observation type. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
|
character(len=1), | intent(in), | optional | :: | separator |
CSV separator. |
|
character(len=1), | intent(in), | optional | :: | quote |
CSV quote character. |
Reads sensor from file or standard input. If no separator character is passed, the default one will be used (comma). If a quote character is given, separators within quoted strings will be ignored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(sensor_type), | intent(out) | :: | sensor |
Sensor type. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
|
character(len=1), | intent(in), | optional | :: | separator |
CSV separator. |
|
character(len=1), | intent(in), | optional | :: | quote |
CSV quote character. |
Reads target from file or standard input. If no separator character is passed, the default one will be used (comma). If a quote character is given, separators within quoted strings will be ignored.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(target_type), | intent(out) | :: | target |
Target type. |
||
integer, | intent(in), | optional | :: | unit |
File unit. |
|
character(len=1), | intent(in), | optional | :: | separator |
CSV separator. |
|
character(len=1), | intent(in), | optional | :: | quote |
CSV quote character. |