|
| 1 | +# Licensed under a 3-clause BSD style license - see LICENSE.rst |
| 2 | + |
| 3 | +from astropy.tests.helper import pytest |
| 4 | +from ..transform import altaz_to_focalplane, focalplane_to_altaz, \ |
| 5 | + observatories, sky_to_altaz, adjust_time_to_hour_angle |
| 6 | + |
| 7 | +import numpy as np |
| 8 | +from astropy.time import Time |
| 9 | +from astropy.coordinates import AltAz |
| 10 | +import astropy.units as u |
| 11 | + |
| 12 | + |
| 13 | +def test_origin_to_focalplane(): |
| 14 | + alt, az = 0.5 * u.rad, 1.5 * u.rad |
| 15 | + x, y = altaz_to_focalplane(alt, az, alt, az) |
| 16 | + assert np.allclose(x, 0 * u.rad) and np.allclose(y, 0 * u.rad) |
| 17 | + |
| 18 | + |
| 19 | +def test_focalplane_units(): |
| 20 | + platescale = 200 * u.mm / u.deg |
| 21 | + alt, az = 0.5 * u.rad, 1.5 * u.rad |
| 22 | + x, y = altaz_to_focalplane(alt, az, alt, az, platescale=platescale) |
| 23 | + assert x.unit == u.m and y.unit == u.m |
| 24 | + alt, az = focalplane_to_altaz(x, y, alt, az, platescale=platescale) |
| 25 | + assert alt.unit == u.rad and az.unit == u.rad |
| 26 | + |
| 27 | + |
| 28 | +def test_shape_to_focalplane(): |
| 29 | + zero = 0. * u.rad |
| 30 | + x, y = altaz_to_focalplane(zero, zero, zero, zero) |
| 31 | + assert x.shape == y.shape and x.shape == () |
| 32 | + |
| 33 | + angle = np.linspace(-0.1, +0.1, 3) * u.rad |
| 34 | + x, y = altaz_to_focalplane(angle, zero, zero, zero) |
| 35 | + assert x.shape == y.shape and x.shape == (3,) |
| 36 | + x, y = altaz_to_focalplane(angle, angle, zero, zero) |
| 37 | + assert x.shape == y.shape and x.shape == (3,) |
| 38 | + x, y = altaz_to_focalplane(angle, zero, angle, zero) |
| 39 | + assert x.shape == y.shape and x.shape == (3,) |
| 40 | + x, y = altaz_to_focalplane(angle, zero, zero, angle) |
| 41 | + assert x.shape == y.shape and x.shape == (3,) |
| 42 | + x, y = altaz_to_focalplane(angle, angle, angle, zero) |
| 43 | + assert x.shape == y.shape and x.shape == (3,) |
| 44 | + x, y = altaz_to_focalplane(angle, angle, zero, angle) |
| 45 | + assert x.shape == y.shape and x.shape == (3,) |
| 46 | + x, y = altaz_to_focalplane(angle, zero, angle, angle) |
| 47 | + assert x.shape == y.shape and x.shape == (3,) |
| 48 | + x, y = altaz_to_focalplane(zero, angle, angle, angle) |
| 49 | + assert x.shape == y.shape and x.shape == (3,) |
| 50 | + x, y = altaz_to_focalplane(angle, angle, angle, angle) |
| 51 | + assert x.shape == y.shape and x.shape == (3,) |
| 52 | + x, y = altaz_to_focalplane(angle[:, np.newaxis], angle, zero, zero) |
| 53 | + |
| 54 | + assert x.shape == y.shape and x.shape == (3, 3) |
| 55 | + try: |
| 56 | + x, y = altaz_to_focalplane(angle, angle[:, np.newaxis], |
| 57 | + angle[:, np.newaxis, np.newaxis], zero) |
| 58 | + assert x.shape == y.shape and x.shape == (3, 3, 3) |
| 59 | + x, y = altaz_to_focalplane(angle, angle[:, np.newaxis], |
| 60 | + angle[:, np.newaxis, np.newaxis], |
| 61 | + angle[:, np.newaxis, np.newaxis, np.newaxis]) |
| 62 | + assert x.shape == y.shape and x.shape == (3, 3, 3, 3) |
| 63 | + x, y = altaz_to_focalplane(angle, angle[:, np.newaxis], |
| 64 | + zero, angle[:, np.newaxis, np.newaxis, np.newaxis]) |
| 65 | + assert x.shape == y.shape and x.shape == (3, 1, 3, 3) |
| 66 | + except RuntimeError: |
| 67 | + # These tests fails for numpy < 1.9 because np.einsum does not |
| 68 | + # broadcast correctly in this case. For details, See |
| 69 | + # https://github.com/desihub/specsim/issues/10 |
| 70 | + pass |
| 71 | + |
| 72 | + |
| 73 | +def test_focalplane_to_origin(): |
| 74 | + alt0, az0 = 0.5 * u.rad, 1.5 * u.rad |
| 75 | + alt, az = focalplane_to_altaz(0. * u.rad, 0. * u.rad, alt0, az0) |
| 76 | + assert np.allclose(alt, alt0) and np.allclose(az, az0) |
| 77 | + |
| 78 | + |
| 79 | +def test_focalplane_roundtrip(): |
| 80 | + alt0, az0 = 0.5 * u.rad, 1.5 * u.rad |
| 81 | + x, y = -0.01 * u.rad, +0.02 * u.rad |
| 82 | + alt, az = focalplane_to_altaz(x, y, alt0, az0) |
| 83 | + x2, y2 = altaz_to_focalplane(alt, az, alt0, az0) |
| 84 | + assert np.allclose(x, x2) and np.allclose(y, y2) |
| 85 | + alt2, az2 = focalplane_to_altaz(x2, y2, alt0, az0) |
| 86 | + assert np.allclose(alt, alt2) and np.allclose(az, az2) |
| 87 | + |
| 88 | + |
| 89 | +def test_altaz_null(): |
| 90 | + alt, az = 0.5 * u.rad, 1.5 * u.rad |
| 91 | + where = observatories['APO'] |
| 92 | + when = Time(56383, format='mjd') |
| 93 | + wlen = 5400 * u.Angstrom |
| 94 | + temperature = 5 * u.deg_C |
| 95 | + pressure = 800 * u.kPa |
| 96 | + altaz_in = AltAz(alt=alt, az=az, location=where, obstime=when, |
| 97 | + obswl=wlen, temperature=temperature, pressure=pressure) |
| 98 | + altaz_out = sky_to_altaz(altaz_in, where=where, when=when, |
| 99 | + wavelength=wlen, temperature=temperature, pressure=pressure) |
| 100 | + assert np.allclose(altaz_in.alt, altaz_out.alt) |
| 101 | + assert np.allclose(altaz_in.az, altaz_out.az) |
| 102 | + |
| 103 | + |
| 104 | +def test_adjust_null(): |
| 105 | + ra = 45 * u.deg |
| 106 | + when = Time(56383, format='mjd', location=observatories['APO']) |
| 107 | + ha = when.sidereal_time('apparent') - ra |
| 108 | + adjusted = adjust_time_to_hour_angle(when, ra, ha) |
| 109 | + assert adjusted == when |
| 110 | + |
| 111 | + |
| 112 | +def test_adjust_missing_longitude(): |
| 113 | + ra = 45 * u.deg |
| 114 | + when = Time(56383, format='mjd', location=None) |
| 115 | + with pytest.raises(ValueError): |
| 116 | + adjusted = adjust_time_to_hour_angle(when, ra, 0.) |
0 commit comments