Examples of query_strip()


Examples of gov.fnal.eag.healpix.PixTools.query_strip()

    int nside = 4;
    int nest = 0;
    double theta1 = 0.0;
    double theta2 = Math.PI / 4.0 + 0.2;
    ArrayList pixlist;
    pixlist = pt.query_strip(nside, theta1, theta2, nest);
    int nlist = pixlist.size();
    for (int i = 0; i < nlist; i++) {
      long ipix = ((Long) pixlist.get(i)).longValue();
      assertEquals("pixel = " + ipix, pixel1[i], ipix, 1e-10);
    }
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.