Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+33 votes

I know that in the CVS file that the information will be stored in the format(Time, X, Y), but when it comes to having multiple chicks, do we make separate CVS files for each one in the recording or should they all be in the same CVS file being marked somehow?

asked in CSC285_Fall2018 by (1 point)

1 Answer

+14 votes

Good question about the export file format.

Note: it's actually "CSV" files, not "CVS" (which is an old version control system that predates git, and also a pharmacy...)

I'm pretty sure that we only want ONE CSV file per video, so I think the format should use four columns:

ChickId,Time,X,Y

You can assume this is the format for now. (However, after longer discussion with the client, it's possible the format could change a bit.)

answered by (508 points)
...