We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In radio_telescope_layout.py, line 32-33 reads
if isinstance(antll, u.quantity.Quantity): antll *= u.deg
I guess you want
if not isinstance(antll, u.quantity.Quantity): antll *= u.deg
to attach unit. BTW, I cannot understand line 76-77
if isinstance(antxyz, u.quantity.Quantity): antxyz *= antxyz
which squares antxyz.
antxyz
The text was updated successfully, but these errors were encountered:
Thank you for noticing these mistakes. The radio_telescope_layout.py is still under developement and, therefore, could have more bugs.
Sorry, something went wrong.
1fc3ddc
No branches or pull requests
In radio_telescope_layout.py, line 32-33 reads
I guess you want
to attach unit.
BTW, I cannot understand line 76-77
which squares
antxyz
.The text was updated successfully, but these errors were encountered: