udacity / self-driving-car-sim

A self-driving car simulator built with Unity
http://udacity.com/self-driving-car
MIT License
3.9k stars 1.5k forks source link

Generated CSV file is locale-specific #6

Closed kenshin23 closed 6 years ago

kenshin23 commented 7 years ago

While generating data for the Behavioral Cloning project, I found something interesting (and highly annoying) with the beta simulator in Linux (Ubuntu 16.10 x64). I was trying to generate new data and when finished recording, I tried to load my CSV file only to find out that the values didn't make sense. When checking it, I found that all the values had a comma instead of a period as the decimals separator (I live in Venezuela so my PC's locale is set as es_VE), so I got unintended extra columns in the file. Running the simulator as $ LC_ALL ./beta_simulator.x86_64 & serves as a workaround.

tdanyluk commented 7 years ago

I also have this problem. the correct command is: LC_ALL=C ./linux_sim.x86_64

AdrianP- commented 7 years ago

Same here. Fixed with @tdanyluk command

baumanab commented 6 years ago

Thank you, some notes have been added to releases, detailing this issue and its solution.