Altitude value exported incorrectly
Brought to you by:
boseefus00001
In geCoordinates.cs line 76:
coord += "," + Altitude.ToString();
should read
coord += "," + Altitude.ToString(System.Globalization.CultureInfo.InvariantCulture);
otherwise wrond decimal separator might be used.
EG, in Norwegian 123.45 would be converted to "123,45" and this would breat the exported KML.
Logged In: YES
user_id=2133621
Originator: YES
The same issue applies to:
geCoordinates.cs line 88
geLocation.cs line 62
geLookAt.cs line 75 & 84
geRegion.cs line 87 & 89
geGroundOverlay.cs line 119
Altitude sometimes uses Single and sometimes uses double type - Ideally it should be a class of its own like Longitude and Latitude.