You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
I did several attempts to import data from a CSV file. I studied the source code of the importer to follow the various checks. Finally, I have to admit that it is very hard to guess as a random user what are the minimum requirements to successfully import data. I ask myself question such as:
Can there be empty cells in a data row?
Can there be 0 values in cells within a data row?
Can there be data rows from multiple sensors in one CSV file?
Why is a data row skipped on a second try if has not been imported successfully before?
Please clearly write down the minimum requirements for the input data. I appreciate the demo data you provide - please provide another example with regards to my questions.
Thank you. Please add these rules to the documentation.
Can there be empty cells in a data row?
No, no empty cells. They will be skipped.
Please consider interpreting empty cells as 0 if the data type allows. I think this would be a plus for a more convenient user experience. It could be a feature.
Because there is a bug, please provide more details in a different issue.
Can there be data rows from multiple sensors in one CSV file?
Yes, but you should not have row 2n for sensor A and row 2n+1 for sensor B, but have the values from different sensors in different columns.
I am not sure I understand. Each sensor is in a separate row in my case not column. Can you tell if the following example file contains valid data to being imported?
I did several attempts to import data from a CSV file. I studied the source code of the importer to follow the various checks. Finally, I have to admit that it is very hard to guess as a random user what are the minimum requirements to successfully import data. I ask myself question such as:
0
values in cells within a data row?Please clearly write down the minimum requirements for the input data. I appreciate the demo data you provide - please provide another example with regards to my questions.
/cc @nuest
The text was updated successfully, but these errors were encountered: