python使用skyfiled进行轨道计算
2022/1/8 22:04:14
本文主要是介绍python使用skyfiled进行轨道计算,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
python 使用skyfield进行轨道计算
/*====安装 ======*/
pip install skyfield
依赖numpy,scipy, 建议安装anaconda
/*====使用======*/
计算火星在天空中的位置:
from skyfield.api import load # Create a timescale and ask the current time. ts = load.timescale() t = ts.now() # Load the JPL ephemeris DE421 (covers 1900-2050). planets = load('de421.bsp') earth, mars = planets['earth'], planets['mars'] # What's the position of Mars, viewed from Earth? astrometric = earth.at(t).observe(mars) ra, dec, distance = astrometric.radec() print(ra) print(dec) print(distance)
输出为:
10h 47m 56.24s +09deg 03' 23.1" 2.33251 au
/*====推荐======*/
相比较PyEphem 而言,skyfiled 全部由python编写,更容易发挥python的优势,在后续的版本升级和迭代支持优于PyEphem,毕竟PyEphem的官网也写了,如果是新研发的项目,建议使用skyfield。
参见Skyfield — documentationhttps://rhodesmill.org/skyfield/
这篇关于python使用skyfiled进行轨道计算的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门