Hi Doug,
>I'm getting an exception resampling:
>
>java.lang.ArrayIndexOutOfBoundsException: 370473
> at visad.FlatField.resample(FlatField.java, Compiled Code)
>
>(I can't get jdb to work, otherwise I'd have a line number for you.)
Just so everyone knows, you can get line numbers to appear without
using jdb. Just run your program with:
java -Djava.compiler=NONE MyProgram
The -D option above turns off the JIT so that line numbers can
appear again. Also, JDK 1.3 beta has Hotspot, which is very fast
but still prints line numbers.
-Curtis