I have some data that are in a code as battle ship game, like this:A0,A1,B0,B4,K12
and I want to transform these into coordinate points. The letter should be the x-coordinate and the number the y-coordinate. Besides that, I should transform the letters in numbers to multiply them. Like that:
A0 = 0 , 0;
A1 = 0 , 15;
A2 = 0 , 30;
B3 = 15 , 45