Package edu.wisc.ssec.mcidas

Examples of edu.wisc.ssec.mcidas.AreaFileException


                break;
            case AREAnav.TANC:
                areaNavigation = new TANCnav(navBlock);
                break;
            default:
                throw new AreaFileException(
                     "AreaFile2.getAreaNav: Unknown navigation type" + navBlock[0]);
        }
    } catch (IllegalArgumentException excp) {
      throw new AreaFileException( "AreaFile2.getAreaNav: bad nav block "+excp.getMessage());
    }

    areaNavigation.setImageStart(dir[5], dir[6]);
    areaNavigation.setRes(dir[11], dir[12]);
    areaNavigation.setStart(1,1);
View Full Code Here


        Date          nomTime = ad.getNominalTime();
        DateFormatter df      = new DateFormatter();
        try {
            nav = AREAnav.makeAreaNav(navBlock, af.getAux());
        } catch (McIDASException me) {
            throw new AreaFileException(me.getMessage());
        }
        int    sensor  = dirBlock[af.AD_SENSORID];
        String calName = McIDASUtil.intBitsToString(dirBlock[af.AD_CALTYPE]);
        int    calType = getCalType(calName);
View Full Code Here

TOP

Related Classes of edu.wisc.ssec.mcidas.AreaFileException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.