*/
public static void main(String[] args) throws Exception {
String file = (args.length > 0)
? args[0]
: "c:/data/satellite/AREA8760";
AreaFile af = new AreaFile(file);
McIDASAreaProjection proj = new McIDASAreaProjection(af);
LatLonPoint llp = new LatLonPointImpl(45, -105);
System.out.println("lat/lon = " + llp);
ProjectionPoint pp = proj.latLonToProj(llp);
System.out.println("proj point = " + pp);