# 
[](https://pypi.org/project/planetmapper/)
[](https://anaconda.org/conda-forge/planetmapper)
[](https://github.com/ortk95/planetmapper/actions/workflows/python-publish.yml)
[](https://github.com/ortk95/planetmapper/actions/workflows/checks.yml)
[](https://planetmapper.readthedocs.io/en/latest/?badge=latest)
[](https://coveralls.io/github/ortk95/planetmapper?branch=main)
[](https://doi.org/10.21105/joss.05728)
PlanetMapper is an open source Python package for visualising, navigating and mapping Solar System observations.
## [Documentation](https://planetmapper.readthedocs.io)
For full documentation, [API reference](https://planetmapper.readthedocs.io/en/latest/documentation.html), and [installation instructions](https://planetmapper.readthedocs.io/en/latest/installation.html), visit [planetmapper.readthedocs.io](https://planetmapper.readthedocs.io/en/latest/index.html).
## [Installation](https://planetmapper.readthedocs.io/en/latest/installation.html)
```bash
pip install planetmapper --upgrade
```
```bash
conda install -c conda-forge planetmapper
```
_Requires Python 3.10+_
## [Citing PlanetMapper](https://planetmapper.readthedocs.io/en/latest/citation.html)
If you use PlanetMapper in your research, please cite the following paper:
> King et al., (2023). PlanetMapper: A Python package for visualising, navigating and mapping Solar System observations. Journal of Open Source Software, 8(90), 5728, https://doi.org/10.21105/joss.05728
<details>
<summary>Citation BibTeX entry</summary>
```bibtex
@article{king_2023_planetmapper,
author = {King, Oliver R. T. and Fletcher, Leigh N.},
doi = {10.21105/joss.05728},
journal = {Journal of Open Source Software},
month = oct,
number = {90},
pages = {5728},
title = {{PlanetMapper: A Python package for visualising, navigating and mapping Solar System observations}},
url = {https://joss.theoj.org/papers/10.21105/joss.05728},
volume = {8},
year = {2023}
}
```
</details>
## Key features
### [Fit and map astronomical observations using a full featured user interface](https://planetmapper.readthedocs.io/en/latest/user_interface.html)
[](https://planetmapper.readthedocs.io/en/latest/user_interface.html)
### [Easily visualise solar system observations with just a few lines of code](https://planetmapper.readthedocs.io/en/latest/general_python_api.html#wireframe-plots)
```python
import planetmapper
import matplotlib.pyplot as plt
body = planetmapper.Body('saturn', '2020-01-01')
body.plot_wireframe_radec()
plt.show()
```
[](https://planetmapper.readthedocs.io/en/latest/general_python_api.html#wireframe-plots)
### [Convert coordinates, generate backplanes and project maps of telescope observations](https://planetmapper.readthedocs.io/en/latest/general_python_api.html)
[](https://planetmapper.readthedocs.io/en/latest/general_python_api.html)
## Contributing
If you spot a bug, or want to contribute code to PlanetMapper, check out the [contributing guidelines](https://github.com/ortk95/planetmapper/blob/main/CONTRIBUTING.md).
## Help and support
If you have any questions, suggestions or feedback, please [visit our support page and get in touch](https://planetmapper.readthedocs.io/en/latest/help.html)!
Raw data
{
"_id": null,
"home_page": "https://github.com/ortk95/planetmapper",
"name": "planetmapper",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10.0",
"maintainer_email": null,
"keywords": "planetmapper, astronomy, space, science, spice, ephemeris, planetary-science, geometry",
"author": "Oliver King",
"author_email": "oliver.king95@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/48/3d/f6ea581d545fcfb1199dfc8be68bc76584438418eb4a976a0c320007978d/planetmapper-1.13.1.tar.gz",
"platform": null,
"description": "# \n\n[](https://pypi.org/project/planetmapper/)\n[](https://anaconda.org/conda-forge/planetmapper)\n[](https://github.com/ortk95/planetmapper/actions/workflows/python-publish.yml)\n[](https://github.com/ortk95/planetmapper/actions/workflows/checks.yml)\n[](https://planetmapper.readthedocs.io/en/latest/?badge=latest)\n[](https://coveralls.io/github/ortk95/planetmapper?branch=main)\n[](https://doi.org/10.21105/joss.05728)\n\nPlanetMapper is an open source Python package for visualising, navigating and mapping Solar System observations.\n\n## [Documentation](https://planetmapper.readthedocs.io)\nFor full documentation, [API reference](https://planetmapper.readthedocs.io/en/latest/documentation.html), and [installation instructions](https://planetmapper.readthedocs.io/en/latest/installation.html), visit [planetmapper.readthedocs.io](https://planetmapper.readthedocs.io/en/latest/index.html).\n\n\n## [Installation](https://planetmapper.readthedocs.io/en/latest/installation.html)\n```bash\npip install planetmapper --upgrade\n```\n\n```bash\nconda install -c conda-forge planetmapper\n```\n\n_Requires Python 3.10+_\n\n\n## [Citing PlanetMapper](https://planetmapper.readthedocs.io/en/latest/citation.html)\nIf you use PlanetMapper in your research, please cite the following paper:\n\n> King et al., (2023). PlanetMapper: A Python package for visualising, navigating and mapping Solar System observations. Journal of Open Source Software, 8(90), 5728, https://doi.org/10.21105/joss.05728\n\n<details>\n<summary>Citation BibTeX entry</summary>\n\n```bibtex\n@article{king_2023_planetmapper,\n author = {King, Oliver R. T. and Fletcher, Leigh N.},\n doi = {10.21105/joss.05728},\n journal = {Journal of Open Source Software},\n month = oct,\n number = {90},\n pages = {5728},\n title = {{PlanetMapper: A Python package for visualising, navigating and mapping Solar System observations}},\n url = {https://joss.theoj.org/papers/10.21105/joss.05728},\n volume = {8},\n year = {2023}\n}\n```\n\n</details>\n\n\n## Key features\n### [Fit and map astronomical observations using a full featured user interface](https://planetmapper.readthedocs.io/en/latest/user_interface.html)\n[](https://planetmapper.readthedocs.io/en/latest/user_interface.html)\n\n### [Easily visualise solar system observations with just a few lines of code](https://planetmapper.readthedocs.io/en/latest/general_python_api.html#wireframe-plots)\n\n```python\nimport planetmapper\nimport matplotlib.pyplot as plt\n\nbody = planetmapper.Body('saturn', '2020-01-01')\nbody.plot_wireframe_radec()\nplt.show()\n```\n\n[](https://planetmapper.readthedocs.io/en/latest/general_python_api.html#wireframe-plots)\n\n### [Convert coordinates, generate backplanes and project maps of telescope observations](https://planetmapper.readthedocs.io/en/latest/general_python_api.html)\n[](https://planetmapper.readthedocs.io/en/latest/general_python_api.html)\n\n\n## Contributing\n\nIf you spot a bug, or want to contribute code to PlanetMapper, check out the [contributing guidelines](https://github.com/ortk95/planetmapper/blob/main/CONTRIBUTING.md).\n\n## Help and support\n\nIf you have any questions, suggestions or feedback, please [visit our support page and get in touch](https://planetmapper.readthedocs.io/en/latest/help.html)!\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "PlanetMapper: A Python package for visualising, navigating and mapping Solar System observations",
"version": "1.13.1",
"project_urls": {
"Changelog": "https://github.com/ortk95/planetmapper/releases",
"Documentation": "https://planetmapper.readthedocs.io/",
"Download": "https://pypi.org/project/planetmapper/",
"GitHub": "https://github.com/ortk95/planetmapper",
"Homepage": "https://github.com/ortk95/planetmapper",
"Paper": "https://doi.org/10.21105/joss.05728",
"conda-forge": "https://anaconda.org/conda-forge/planetmapper"
},
"split_keywords": [
"planetmapper",
" astronomy",
" space",
" science",
" spice",
" ephemeris",
" planetary-science",
" geometry"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "d7443b0786977b177a28621dfb45b534f085b8cbc13856f92ca0c54948e1ac38",
"md5": "d18f2bb2c7048774870a604fabb8cdb7",
"sha256": "65e29dfac9c2eaca0e30cad77fa7045119d9a0efdb25ca47d70d01a9cf077b98"
},
"downloads": -1,
"filename": "planetmapper-1.13.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "d18f2bb2c7048774870a604fabb8cdb7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10.0",
"size": 140869,
"upload_time": "2025-08-01T09:51:26",
"upload_time_iso_8601": "2025-08-01T09:51:26.961773Z",
"url": "https://files.pythonhosted.org/packages/d7/44/3b0786977b177a28621dfb45b534f085b8cbc13856f92ca0c54948e1ac38/planetmapper-1.13.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "483df6ea581d545fcfb1199dfc8be68bc76584438418eb4a976a0c320007978d",
"md5": "eee88a087c62007c46529e052ad0d68e",
"sha256": "084ae171ad392578237e7bf9dfd8c6c5981ef358cbd89dd606c6dd6ae1e72a89"
},
"downloads": -1,
"filename": "planetmapper-1.13.1.tar.gz",
"has_sig": false,
"md5_digest": "eee88a087c62007c46529e052ad0d68e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10.0",
"size": 183704,
"upload_time": "2025-08-01T09:51:28",
"upload_time_iso_8601": "2025-08-01T09:51:28.386349Z",
"url": "https://files.pythonhosted.org/packages/48/3d/f6ea581d545fcfb1199dfc8be68bc76584438418eb4a976a0c320007978d/planetmapper-1.13.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-01 09:51:28",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ortk95",
"github_project": "planetmapper",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [
{
"name": "astropy",
"specs": [
[
"<=",
"7.0.1"
]
]
},
{
"name": "matplotlib",
"specs": [
[
"<=",
"3.10.5"
]
]
},
{
"name": "numpy",
"specs": [
[
"<=",
"2.2.6"
]
]
},
{
"name": "Pillow",
"specs": [
[
"<=",
"11.3.0"
]
]
},
{
"name": "spiceypy",
"specs": [
[
"<=",
"6.0.3"
]
]
},
{
"name": "scipy",
"specs": [
[
"<=",
"1.15.3"
]
]
},
{
"name": "photutils",
"specs": [
[
"<=",
"2.2.0"
]
]
},
{
"name": "tqdm",
"specs": [
[
"<=",
"4.67.1"
]
]
},
{
"name": "pyproj",
"specs": [
[
"<=",
"3.7.1"
]
]
},
{
"name": "typing-extensions",
"specs": [
[
"<=",
"4.14.1"
]
]
}
],
"lcname": "planetmapper"
}