int[] rowCoord = {0, (height/8)-1, 2*(height/8)-1, 3*(height/8)-1, 4*(height/8)-1,
5*(height/8)-1, 6*(height/8)-1, 7*(height/8)-1};
Index loc, gLoc = new Index(0, 0);
//get square location
loc = new Board().notationToIndex(notation);
//get upper left corner location
gLoc.setX(columnCoord[loc.getY()]);
gLoc.setY(rowCoord[loc.getX()]);
return gLoc;