Open cdeil opened 12 years ago
I think we should start thinking about adding a test or two for arbitrary equinox and epoch of observation. For example, at the moment, I'm testing the following with Kapteyn to check the implementation of FK4 -> FK5 in Astropy
before = (celestial.equatorial, celestial.fk4_no_e, "B1930", "B1966_OBS")
after = (celestial.equatorial, celestial.fk5, "J2030")
coords = celestial.sky2sky(before, after, 45., 46.)
@cdeil - I'm not sure how to best do this, because as you were saying above, we should keep the number of tests small. Maybe we could just compare against kapteyn and pyAST? (or even just PyAST)
Like @dsberry said in https://github.com/astropy/coordinates-benchmark/pull/4#issuecomment-10753477 :
I agree we should keep the number of tests small. We could just test
astropy
(once obstime is available) againstpyast
and I don't think we need all systems here.