Data selection example
- Last UpdatedJun 26, 2025
- 1 minute read
The following are examples of valid Structured Data Files data selection configurations:
Structured Data Files data selection configuration example with custom IndexFormat
[
{
"Selected": true,
"Name": "Name",
"StreamId": "StreamId",
"ValueField": "Pressure",
"IndexField": "PressureTimeStamp",
"IndexFormat": "mm/dd/yy",
"DataType": "Int16"
}
]
Structured Data Files data selection configuration example with complex data
Example complex data (CSV file with header):
timestamp, lat, long, x_col, y_col, z_col
2021-09-12, 15.294533, 20.479839, 1.1, 2.2, 3.3
2021-09-12, 36.33403, -82.4019478, 4.1, 5.2, 6.3
Example data selection configuration for complex data:
[
{
"Selected": true,
"Name": "Name_XYZ",
"StreamId": "StreamId_XYZ",
"ValueField": null,
"DataFields": {
"X": "x_col",
"Y": "y_col",
"Z": "z_col"
},
"TimeField": "timestamp",
"DataType": "COORDINATES"
},
{
"Selected": true,
"Name": "Name_LatLong",
"StreamId": "StreamId_LatLong",
"ValueField": null,
"DataFields": {
"Latitude": "lat",
"Longitude": "long"
},
"TimeField": "timestamp",
"DataType": "GEOLOCATION"
}
]
Structured Data Files data selection configuration example with unselected item
[
{
"Selected": false,
"Name": "Name",
"StreamId": "StreamId",
"ValueField": "FanSpeed",
"TimeField": "FileCreationTime",
"DataType": "Int32"
}
]