I'm trying to load some XY-coordinates from a asc-file. It looks like this:
-55.988544 9382
-53.395804 9403
-50.804601 9433
Then I am converting the coordinates to floats. But somehow f.e. for the first value I get "-55988544.0" instead of "-55.988544".
Here is the code:
private void btngettext_Click(object sender, EventArgs e)
{
StreamReader objStream = new StreamReader("C:\\...\\.asc");
firstLine = objStream.ReadLine();
int i = 0;
/*Split String on Tab,
* will separate words*/
string[] words = firstLine.Split('\t');
richTextBox1.Text = words[0];
foreach(string word in words)
{
if(word != "")
{
Console.WriteLine(word); //the value of the string is "-55.988544" here
//value = float.Parse(word); tried both
value = Convert.ToSingle(word); //here the float value is "-55988544.0"
Console.WriteLine(value.ToString());// "-5,598854E+07"
xyArray[0,i] = value;
i++;
}
}
}
Besides, if I would use objStream.ReadToEnd() or .Read(), how could iterate through lines. Read the values in the first line, save them and proceed to the next line.
Thanks in advance,
BC++
