zone_letter,
llp1);
llpoints[6] = llp1.getLatitude();
llpoints[7] = llp1.getLongitude();
MGRSPoint mgrs = new MGRSPoint(northing, easting, zone_number, zone_letter);
mgrs.resolve(mgrsBasePoint.getAccuracy());
// MGRSPoint.MGRStoLL(mgrs, ellipsoid, llp1);
String mgrsString = mgrs.getMGRS();
if (Debug.debugging("utmgriddetail"))
Debug.output(" - assigning " + mgrsString + " to poly with "
+ mgrs.getAccuracy());
PolygonGeometry poly = new PolygonGeometry.LL(llpoints, OMGraphic.DECIMAL_DEGREES, (interval <= 1000 ? OMGraphic.LINETYPE_STRAIGHT
: OMGraphic.LINETYPE_GREATCIRCLE));
poly.setAppObject(mgrsString);
return poly;