esheldon / esutil

A variety of python utilities focusing on numerical, scientific, and astrophysical computing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

small bug/typo in wcsutil.py (too minor for a pull request)

terben opened this issue · comments

There is a small bug/typo in the file wcsutil.py, line 597:

It currently is:

x,y = self._findxy_one(lon, lat, xtol=tol)

but it must read:

x,y = self._findxy_one(lon, lat, xtol=xtol)

(tol -> xtol at the end of the line)

thanks very much, fixed in master