Hi!
I’m trying to upload to openSenseMap some data recorded by a Arduino-based mobile station, in .csv format. Every time I try to upload the file I get an “Invalid filetype” error
An example line from the .csv file:
5d68db3b953683001a9a9fea,20,2020-01-06T14:10:27Z,25.98,44.45,0
If I copy the same data into the Measurement data field, it works fine. However, this is difficult to do with large amounts of data.
If I record data in .json format, I can upload it:
[
{“sensor”:“5d68db3b953683001a9a9fea”,“value”:“20”,“createdAT”:“2020-01-06T14:10:27Z”,“location”:[25.98,44.45,0]}
]
Still, I would prefer the .csv format, as it’s much simpler to implement in code.
Any ideas? What I’m doing wrong???