Skip to content
New issue

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

AttributeError: module 'pymap3d' has no attribute 'eci2aer' #38

Closed
dongsin-kim opened this issue Mar 18, 2021 · 2 comments
Closed

AttributeError: module 'pymap3d' has no attribute 'eci2aer' #38

dongsin-kim opened this issue Mar 18, 2021 · 2 comments

Comments

@dongsin-kim
Copy link

Describe the bug
What is your expected output value(s)?
What program/function are you comparing with?

Hi, I have been actively used an attribute eci2aer of pymap3d. However, today I suddenly faces an error when I use the attribute. Am I the only person who see this error: AttributeError: module 'pymap3d' has no attribute 'eci2aer' ?

How to reproduce the error?

  1. conda create -n myenv python=3.8
  2. conda activate myenv
  3. pip3 install pymap3d
  4. python
  5. import pymap3d
  6. pymap3d.eci2aer()

OUTPUT:
AttributeError: module 'pymap3d' has no attribute 'eci2aer'

@scivision
Copy link
Member

The ECI functions require numpy. I didn't make Numpy auto-install because most PyMap3D functions work without Numpy for scalars. this is relevant for real-time / microPython and similar.

so just

conda install numpy

and it should work

@dongsin-kim
Copy link
Author

Hi @scivision,

Thank you for your swift reply and detailed explanations. Based on your advice, I could solve this issue-! Thank you so much.

Now this issue should be closed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants