Package edu.wisc.ssec.mcidas

Examples of edu.wisc.ssec.mcidas.AREAnav


    return areaNavigation;
  }

  public java.awt.geom.Rectangle2D getBoundingBox() throws AreaFileException {
    AREAnav anav = getAreaNavigation();

    //double[][] linelem = makePerimeter(numElems, numLines);
    double[][] linelem = makeArea(numElems, numLines);
    int size = linelem[0].length;

    // convert to lat/lon
    double[][] latlon =  anav.toLatLon(linelem);

    // get bounding box
    double maxLon = -Double.MAX_VALUE;
    double maxLat = Double.MIN_VALUE;
    double minLon = -Double.MAX_VALUE;
View Full Code Here

TOP

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

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.