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
Some tests should be made to ensure the readability and useability of the EphemKernel Class. These tests should include:
code
spkid
The text was updated successfully, but these errors were encountered:
Maybe it would be interesting to change the parameter code within the EphemKernel to spkid. This would avoid misconceptions about the word code.
EphemKernel
Sorry, something went wrong.
We can also add a query to the SBDB to get the spkid automatically. This can be based on the following codelines suggested by @martinBanda .
from astroquery.jplsbdb import SBDB sbdb = SBDB.query('1999 RC216') obj = sbdb['object'] spkid = obj['spkid'] print(spkid)
Follows three ways to get the spk id:
Being the item (1) the most efficient way (according to me), because it only depends on the existence of the bsp file avoiding query time.
I have developed the codes to get spk id using any of the three methods.
No branches or pull requests
Some tests should be made to ensure the readability and useability of the EphemKernel Class. These tests should include:
code
tospkid
The text was updated successfully, but these errors were encountered: