Examples of WCSTransform


Examples of jsky.coords.WCSTransform

        if (_wcs != null) {
            return;
        }

        try {
            _wcs = new WCSTransform(new FITSKeywordProvider(_fitsImage));
        } catch (IllegalArgumentException e) {
            _wcs = null;
            return;
        }
        if (!_wcs.isWCS()) {
View Full Code Here

Examples of jsky.coords.WCSTransform

     * @param dec Dec center coordinate in deg J2000
     */
    public void blankImage(double ra, double dec) {
        // 15' * 60 seconds/minute
        int w = 15 * 60;
        _wcs = new WCSTransform(ra, dec, 1.7, 1.7, w / 2., w / 2., w, w, 180., 2000, 2000., "-SIN");
        _noInitWCS = true;
        try {
            _scale = 1.0F;
            if (_fitsImage != null) {
                _fitsImage.clearTileCache();
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.