I have only about half a clue what I'm gonna do... but here's my start at "Weather Sandbox"
public class test {
public static void main(String[] args) {
double[][] pressureData;
pressureData = new double[50][50];
pressureData[0][5] = 1001.5;
System.out.println ("The pressure at point 0N 5W is: " + pressureData[0][5]);
}
}
When you start a new simulation, it'll let you select: North America, Atlantic, Pacific... idk other stuff maybe.
I just need to know how you make an interface in Java... I have no idea...