File: stcspherctest.py

package info (click to toggle)
gavodachs 2.11%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 8,972 kB
  • sloc: python: 100,078; xml: 3,014; javascript: 2,360; ansic: 918; sh: 216; makefile: 31
file content (357 lines) | stat: -rw-r--r-- 12,369 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
"""
Tests for the calculations with various spherical coordinate systems.
"""

#c Copyright 2008-2024, the GAVO project <gavo@ari.uni-heidelberg.de>
#c
#c This program is free software, covered by the GNU GPL.  See the
#c COPYING file in the source distribution.


import datetime
import math
import re

import numpy

from gavo.helpers import testhelpers

from gavo import stc
from gavo import utils
from gavo.stc import spherc
from gavo.stc import sphermath
from gavo.stc import times
from gavo.utils import DEG
from gavo.utils import mathtricks

import stcgroundtruth


class PrecAnglesTest(testhelpers.VerboseTest):
	"""tests for various precessions.
	"""
	def testLieskeConstantsFromJ2000(self):
		for year, zetaL, zL, thetaL in [
				(1950, -1153.036, -1152.838, -1002.257),
				(1980, -461.232, -461.200, -400.879),
				(2050, 1153.187, 1153.385, 1002.044)]:
			destEp = stc.jYearToDateTime(year)
			zeta, z, theta = spherc.prec_IAU1976(times.dtJ2000, destEp)
			self.assertAlmostEqual(zeta/utils.ARCSEC, zetaL, places=3)
			self.assertAlmostEqual(z/utils.ARCSEC, zL, places=3)
			self.assertAlmostEqual(theta/utils.ARCSEC, thetaL, places=3)

	def testLieskeConstantsToJ2000(self):
		for year, zetaL, zL, thetaL in [
				(1850, 3456.881, 3458.664, 3007.246),
				(1920, 1844.273, 1844.781, 1603.692),
				(1965, 807.055, 807.152, 701.570),]:
			srcEp = stc.bYearToDateTime(year)
			zeta, z, theta = spherc.prec_IAU1976(srcEp, times.dtJ2000)
			self.assertAlmostEqual(zeta/utils.ARCSEC, zetaL, places=3)
			self.assertAlmostEqual(z/utils.ARCSEC, zL, places=3)
			self.assertAlmostEqual(theta/utils.ARCSEC, thetaL, places=3)


_b = "BARYCENTER"
_t = "TOPOCENTER"
J2000 = times.dtJ2000
B1950 = times.dtB1950
B1885 = times.bYearToDateTime(1885)
J1992 = times.bYearToDateTime(1992.25)

class PathTest(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
	"""tests for finding paths in the "virtual graph" of transforms.
	
	This is a rather fragile test due to the whacky heuristics inherent in
	path finding by spherc.
	"""

	def _runTest(self, sample):
		fromTriple, toTriple, path0 = sample
		path = tuple(t[1] for t in
			spherc._findTransformsPath(fromTriple, toTriple))
		self.assertEqual(path0, path)

	samples = [
		(("FK4", B1950, _b), ("FK5", J2000, _b), (
			('FK5', J2000, 'BARYCENTER'),)),
		(("FK4", B1950, _b), ("FK5", datetime.datetime(2009, 10, 2), _b), (
			('FK5', J2000, _b), ('FK5', datetime.datetime(2009, 10, 2, 0, 0), _b))),
		(("FK5", B1950, _b), ("FK4", J2000, _b), (
			('FK5', J2000, _b), ('FK4', B1950, _b), ('FK4', J2000, _b))),
		(("FK4", B1885, _b), ("FK5", J1992, _b), (
			('FK4', B1950, _b), ('FK5', J2000, _b),
			('FK5', datetime.datetime(1992, 4, 1, 9, 45, 9, 292082), _b))),
		(("FK5", B1885, _b), ("FK5", J1992, _b), (
			('FK5', J2000, _b),
			('FK5', datetime.datetime(1992, 4, 1, 9, 45, 9, 292082), _b))),
		(("FK5", B1885, _b), ("GALACTIC_II", None, _b), (
			('FK5', J2000, _b), ('GALACTIC_II', None, _b))),
		(("FK4", B1885, _b), ("GALACTIC_II", None, _b), (
			('FK4', B1950, _b), ('GALACTIC_II', None, _b))),
		(("FK4", B1885, _t), ("GALACTIC_II", None, _b), (
			('FK4', B1950, _t), ('GALACTIC_II', None, _t),
				('GALACTIC_II', None, _b))),
	]


class SixVectorTest(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
	"""tests for working spherical-to-six-vector full transforms.
	"""
	
	posSamples = [
		((0,0), ('deg', 'deg')),
		((180,0), ('deg', 'deg')),
		((359.99,0), ('deg', 'deg')),
		((40,22), ('deg', 'deg')),
		((163,-52), ('deg', 'deg')),
		((253,-82), ('deg', 'deg')),
		((0,90), ('deg', 'deg')),
		((0,-90), ('deg', 'deg')),
		((2,10), ('rad', 'deg')),
		((2,10,5), ('rad', 'deg', 'arcsec')),
		((4,-10,5), ('rad', 'deg', 'pc')),
	]

	samples = [posSamp+velSamp
			for posSamp in posSamples
		for velSamp in [
			(None, None, None),
			((0, 0), ("arcsec", "arcsec"), ("yr", "yr")),
			((0.1, 0.1), ("arcsec", "arcsec"), ("yr", "yr")),
			((0.1, -0.1), ("rad", "arcsec"), ("cy", "yr")),
			((-0.1, 0.1), ("rad", "rad"), ("cy", "cy")),
			((0.1, -0.1), ("rad", "rad"), ("cy", "cy")),
			((1, 1, 9), ("rad", "rad", "km"), ("cy", "cy", "s")),
			((1, 1, 0.01), ("rad", "rad", "pc"), ("cy", "cy", "cy"))]]

	def assertAlmostEqualST(self, pos1, pos2, vel1, vel2):
		try:
			self.assertEqual(len(pos1), len(pos2))
			for v1, v2 in zip(pos1, pos2):
				self.assertAlmostEqual(v1, v2)
			if vel1 is None:
				self.assertEqual(vel2, None)
			else:
				self.assertEqual(len(vel1), len(vel2))
				for v1, v2 in zip(vel1, vel2):  # Numerical issues in RV -- fix?
					self.assertAlmostEqual(v1, v2, places=4)
		except AssertionError:
			raise AssertionError("%s, %s != %s, %s"%(pos1, vel1, pos2, vel2))

	def _runTest(self, sample):
		pos, posUnit, vel, velUnitS, velUnitT = sample
		trans = sphermath.SVConverter(pos, posUnit, vel, velUnitS, velUnitT)
		newPos, newVel = trans.from6(trans.to6(pos, vel))
		self.assertAlmostEqualST(pos, newPos, vel, newVel)


class SpherMathTest(testhelpers.VerboseTest):
	"""tests for some basic functionality of sphermath.
	"""
	trans = sphermath.SVConverter((0,0), ('deg', 'deg'))

	def testRotateY(self):
		sv = self.trans.to6((0,10))
		for angle in range(10):
			matrix = spherc.threeToSix(mathtricks.getRotY(angle*utils.DEG))
			pos, _ = self.trans.from6(numpy.dot(matrix, sv))
			self.assertAlmostEqual(pos[1], (10+angle))

	def testRotateX(self):
		sv = self.trans.to6((270,10))
		for angle in range(10):
			matrix = spherc.threeToSix(mathtricks.getRotX(angle*utils.DEG))
			pos, _ = self.trans.from6(numpy.dot(matrix, sv))
			self.assertAlmostEqual(pos[1], (10+angle))

	def testRotateZ(self):
		sv = self.trans.to6((10,0))
		for angle in range(10):
			matrix = spherc.threeToSix(mathtricks.getRotZ(angle*utils.DEG))
			pos, _  = self.trans.from6(numpy.dot(matrix, sv))
			self.assertAlmostEqual(pos[0], (10-angle))

	def testSimpleSpher(self):
		for theta, phi in [(0, -90), (20, -89), (180, -45), (270, 0),
				(358, 45), (0, 90)]:
			thetaObs, phiObs = sphermath.cartToSpher(
				sphermath.spherToCart(theta*DEG, phi*DEG))
			self.assertAlmostEqual(theta, thetaObs/DEG)
			self.assertAlmostEqual(phi, phiObs/DEG)

	def testArtificialRotation(self):
		transMat = sphermath.computeTransMatrixFromPole((0, math.pi/4),
			(0, -math.pi/4))
		def trans(t, p):
			a, b = sphermath.cartToSpher(numpy.dot(transMat,
				sphermath.spherToCart(t*DEG, p*DEG)))
			return a/DEG, b/DEG
		for t, p, a0, b0 in [
			(0, 90, 180, 45),
			(90, 0, 90, 0),
			(270, 0, 270, 0),
			(45, 45, 106.32494993689, 58.60028519008), # XXX think about this
		]:
			a, b = trans(t, p)
			self.assertAlmostEqual(a0, a)
			self.assertAlmostEqual(b0, b)

	def _assertEulerMatch(self, eulers):
		afterRoundtrip = sphermath.getEulerAnglesFromMatrix(
			sphermath.getMatrixFromEulerAngles(*[e*DEG for e in eulers]))
		afterRoundtrip = tuple([v/DEG for v in afterRoundtrip])
		for i in range(3):
			self.assertAlmostEqual(eulers[i], afterRoundtrip[i], 8, "%s!=%s"%(
				eulers, afterRoundtrip))

	def testEulerFromMatrix(self):
		# Cave degeneration of euler angles; when in doubt, check the matrices.
		self._assertEulerMatch((-88, 8, 3))
		self._assertEulerMatch((92, 94, 133))
		self._assertEulerMatch((92, 94, 33))
		self._assertEulerMatch((92, 4, 33))
		self._assertEulerMatch((27, 4, 33))
		self._assertEulerMatch((27, 94, 33))
		self._assertEulerMatch((-27, 94, 33))
		self._assertEulerMatch((-27, 94, -33))

	def _assertThreeVecRoundtrip(self, long, lat):
		afterRoundtrip = sphermath.toSpherical(
			sphermath.toThreeVec(long*DEG, lat*DEG))
		self.assertAlmostEqual(long, afterRoundtrip[0]/DEG)
		self.assertAlmostEqual(lat, afterRoundtrip[1]/DEG)

	def testThreeVec(self):
		for lat in [0, -60, 40]:
			self._assertThreeVecRoundtrip(0, lat)
			self._assertThreeVecRoundtrip(90, lat)
			self._assertThreeVecRoundtrip(180, lat)
			self._assertThreeVecRoundtrip(-90, lat)
		self._assertThreeVecRoundtrip(0, 90)
		self._assertThreeVecRoundtrip(0, -90)


class MiscTest(testhelpers.VerboseTest):
	def testAllFour(self):
		sysAST = stc.parseSTCS("Time TT unit d\n"
			"Position ICRS BARYCENTER 0 0 unit deg\n"
			"Spectral BARYCENTER unit m\n"
			"Redshift OPTICAL")
		baseAST = stc.parseSTCS("TimeInterval UTC 2000-01-01T00:00:00"
				" 2010-01-01T00:00:00\n"
			"Position GALACTIC 1.2 0.4 unit rad\n"
			"Spectral GEOCENTER 4000 unit Angstrom\n"
			"Redshift RADIO 4")
		newAST = stc.conformTo(baseAST, sysAST)
		self.assertEqual(newAST.timeAs[0].upperLimit.second, 1)
		self.assertEqual(newAST.timeAs[0].frame.timeScale, "TT")
		self.assertEqual(int(newAST.place.getValues()[0]), 275)
		self.assertEqual(newAST.place.unit, ("deg", "deg"))
		self.assertEqual(int(newAST.freq.getValues()[0]*1e7), 4)


class ToGalacticTest(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
	_toSystem = stc.parseSTCS("Position J2000")

	def _runTest(self, sample):
		fromCoo, (ares, dres) = sample
		ast = stc.parseSTCS("Position GALACTIC %.11f %.11f"%fromCoo)
		st = sphermath.SVConverter.fromSTC(ast)
		sv = st.to6(ast.place.value)
		sv = numpy.dot(spherc._b1950ToGalMatrix, sv)
		pos, vel = st.from6(sv)
		a, d = pos
		self.assertAlmostEqual(ares, a, places=6)
		self.assertAlmostEqual(dres, d, places=6)
	
	samples = [
		((265.6108440311, -28.9167903484), (0,0)),
		((129.5660460691, -19.7089490512), (243.78, 13.2)),
	]


class SuperGalacticTest(testhelpers.VerboseTest):
	def testGalToSG(self):
		baseAST = stc.parseSTCS("Position GALACTIC 23.54 -45.32")
		sysAST = stc.parseSTCS("Position SUPER_GALACTIC")
		res = stc.conformTo(baseAST, sysAST)
		p = res.place.value
		self.assertAlmostEqual(p[0], 249.92902823)
		self.assertAlmostEqual(p[1], 34.12639039)

	def testSGToB1950(self):
		baseAST = stc.parseSTCS("Position SUPER_GALACTIC 23.54 -45.32")
		sysAST = stc.parseSTCS("Position B1950")
		res = stc.conformTo(baseAST, sysAST)
		p = res.place.value
		self.assertAlmostEqual(p[0], 100.62487077)
		self.assertAlmostEqual(p[1], 28.96712491)


class PositionOnlyTestBase(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
	"""A base class for makestctruth-based tests involving positions only.
	"""

	def _runTest(self, sample):
		(ra, dec), (ra1, dec1) = sample
		ast = self.srcSystem.change(
			place=self.srcSystem.place.change(value=(ra,dec)))
		res = stc.conformTo(ast, self.destSystem)
		self.assertAlmostEqual(res.place.value[0], ra1)
		self.assertAlmostEqual(res.place.value[1], dec1)


class SixVectorTestBase(testhelpers.VerboseTest, metaclass=testhelpers.SamplesBasedAutoTest):
	"""A base class for makestctruth-based tests involving full 6-vectors.
	"""

	def _runTest(self, sample):
		(ra, dec, prl, pma, pmd, rv
			), (ra1, dec1, prl1, pma1, pmd1, rv1) = sample
		ast = self.srcSystem.change(
			place=self.srcSystem.place.change(value=(ra,dec,prl)),
			velocity=self.srcSystem.velocity.change(value=(pma, pmd, rv)))
		res = stc.conformTo(ast, self.destSystem, slaComp=True)
		places = 6
		self.assertAlmostEqual(res.place.value[0], ra1, places=places)
		self.assertAlmostEqual(res.place.value[1], dec1, places=places)
		self.assertAlmostEqual(res.place.value[2], prl1, places=places)
		self.assertAlmostEqual(res.velocity.value[0], pma1, places=places-3)
		self.assertAlmostEqual(res.velocity.value[1], pmd1, places=places-3)
		self.assertAlmostEqual(res.velocity.value[2], rv1, places=places-3)


class SimpleTrafoTest(testhelpers.VerboseTest):
	def testBasic(self):
		conv = stc.getSimple2Converter(
			stc.parseSTCS("Position GALACTIC"),
			stc.parseSTCS("Position ICRS"))
		ra, dec = conv(4, 40)
		self.assertAlmostEqual(ra, 234.99533124940731)
		self.assertAlmostEqual(dec, -2.1043398500407746)


# This mess creates tests from the samples in stcgroundtruth;
# see the globals in there; the tests are called Test<varname>
for sampleName in dir(stcgroundtruth):
	if not re.match("[a-zA-Z]", sampleName):
		continue
	_samples, _srcSystemSTC, _destSystemSTC = getattr(stcgroundtruth, sampleName)
	if sampleName.startswith("Six"):
		base = SixVectorTestBase
	else:
		base = PositionOnlyTestBase
	class GroundTruthTest(base):
		samples = _samples
		destSystem = stc.parseSTCS(_destSystemSTC)
		srcSystem = stc.parseSTCS(_srcSystemSTC)
	globals()["Test"+sampleName] = GroundTruthTest
	GroundTruthTest.__name__= "Test"+sampleName
	del GroundTruthTest
	del base


if __name__=="__main__":
	testhelpers.main(PositionOnlyTestBase)