Bounds = convert(Double.parseDouble(attributes.getValue("minlat")), Double.parseDouble(attributes.getValue("minlon")));
}
}
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;
}