Closed mtazzari closed 7 years ago
Swap the order of the inc and PA parameters in sampleProfile.
inc
PA
sampleProfile
At the moment inc comes before than PA in sampleProfile:
vis = sampleImage(image, dxy, dist, u, v, dRA=0, dDec=0, PA=0, uvcheck=False) vis = sampleProfile(intensity, Rmin, dR, nxy, dxy, dist, u, v, dRA=0, dDec=0, inc=0, PA=0, uvcheck=False)
Should be:
vis = sampleProfile(intensity, Rmin, dR, nxy, dxy, dist, u, v, dRA=0, dDec=0, PA=0, inc=0, uvcheck=False)
Amend the pyx file, the tests, and the speed_benchmark.
Swap the order of the
inc
andPA
parameters insampleProfile
.At the moment
inc
comes before thanPA
insampleProfile
:Should be:
Amend the pyx file, the tests, and the speed_benchmark.