It seems that the numerical part of your array is made of strings instead of numbers. You can convert the strings this way:
{{"600.000,0.000,100.000,0.000,109.000,0.000,3.784,"}, \
{"590.000,-10.000,100.000,0.000,109.000,0.000,3.174,"}, \
{"580.000,-20.000,100.000,0.000,109.000,0.000,2.747,"}, \
{"570.000,-30.000,100.000,0.000,109.000,0.000,2.411,"}} /. \
{str_String} :> ToExpression[StringSplit[StringDrop[str, -1], ","]]