Hoan Ton-That writes: > Is there a way to convert from strings to > floats that is more precise? > > > list_to_float("-35.244818"). > -35.2448 The conversion is more precise than you think, it's just the default output precision which is confusing you: > io:fwrite("~f\n", [list_to_float("-35.244818")]). Matthias