*/
public static void ncView(String pathname) {
try {
System.err
.println("Try to print the variable definition of the current netCDF file:");
new NCdump().print(pathname, System.out, false, false, false, true,
null, null);
} catch (java.io.IOException e) {
System.err.println(e.toString());
}
}