105106107108109110111112113114115
} } private UTMPoint convert(double latitude, double longitude) { WGS84Point wgs = new WGS84Point(); wgs.SetDegrees(latitude, longitude); UTMPoint GPSPoint = new UTMPoint(); Coordinates.convertWGS84toUTM(wgs, GPSPoint); return GPSPoint; }