Examples of MSGnavigation


Examples of ucar.unidata.geoloc.projection.sat.MSGnavigation

    //attributes.add(new Attribute("semi_minor_axis", new Double(minor_axis)));
    attributes.add(new Attribute("height_from_earth_center", new Double(nr * major_axis)));
    attributes.add(new Attribute("scale_x", new Double(scale_x)));
    attributes.add(new Attribute("scale_y", new Double(scale_y)));

    proj = new MSGnavigation(Lat0, Lon0, major_axis, minor_axis, nr * major_axis, scale_x, scale_y);

    if (GridServiceProvider.debugProj) {

      double Lo2 = gds.getDouble(GridDefRecord.LO2) + 360.0;
      double La2 = gds.getDouble(GridDefRecord.LA2);
View Full Code Here

Examples of ucar.unidata.geoloc.projection.sat.MSGnavigation

    ProjectionPoint p = proj.latLonToProj(startL);
    System.out.printf("lat,lon= (%f, %f) x, y= (%f, %f) %n", lat, lon, p.getX(), p.getY());
  }

  public void testMSG() {
    doOne(new MSGnavigation(), 60, 60);
    testProjection(new MSGnavigation());

    MSGnavigation m = new MSGnavigation();
    showProjVal(m, 0, 0);
    showProjVal(m, 60, 0);
    showProjVal(m, -60, 0);
    showProjVal(m, 0, 60);
    showProjVal(m, 0, -60);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.