Skip to content

Commit

Permalink
Removed unused PDS tools (#20)
Browse files Browse the repository at this point in the history
Remove unused PDS tools
  • Loading branch information
dahlend authored May 15, 2024
1 parent d4d1a25 commit 3b0a298
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 109 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed construction of populations entirely.
- Removed folder for `population`, the remaining contents were moved up to the base
level of the package.
- Removed PDS related tools.

## [0.2.1] - 2024 - 5 - 13

Expand Down
7 changes: 0 additions & 7 deletions doc/api/interface.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,3 @@ Horizons
.. automodule:: neospy.horizons
:members:
:inherited-members:

PDS
---

.. automodule:: neospy.pds
:members:
:inherited-members:
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ license = {text = "MIT"}
requires-python = ">=3.9"
classifiers=["Programming Language :: Python :: 3"]
dependencies = ["astropy>=5.3.4", "matplotlib", "numpy>=1.24",
"pandas", "requests", "scipy", "matplotlib-label-lines",
"pds4_tools @ https://github.com/Small-Bodies-Node/pds4_tools/tarball/master"]
"pandas", "requests", "scipy", "matplotlib-label-lines"]

[project.urls]
homepage = "https://github.com/IPAC-SW/neospy"
Expand Down Expand Up @@ -53,13 +52,11 @@ markers = [

# Options for the coverage report.
[tool.coverage.run]
omit = ["*/neospy/population/*",
"*/neospy/mpc.py",
omit = ["*/neospy/mpc.py",
"*/neospy/irsa.py",
"*/neospy/wise.py",
"*/neospy/ztf.py",
"*/neospy/horizons.py",
"*/neospy/pds.py",
"*/neospy/data/*",
"*/examples/*",]

Expand Down
2 changes: 0 additions & 2 deletions src/neospy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
flux,
mpc,
irsa,
pds,
ztf,
fov,
)
Expand Down Expand Up @@ -57,7 +56,6 @@
"wise",
"neos",
"mpc",
"pds",
"SimultaneousStates",
"propagate_n_body",
"propagate_two_body",
Expand Down
8 changes: 0 additions & 8 deletions src/neospy/mpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,14 +592,6 @@ def normalize_names(dataset, col: str = "MPC_packed_name", name_lookup=None):
Given a Pandas Dataframe containing packed MPC names, alter the names to be the up
to date MPC designation.
.. testcode::
:skipif: True
from neospy.mpc import normalize_names
from neospy.pds import fetch_pds_data
dataset = normalize_names(fetch_pds_data("data/neowise_neos.xml"))
Parameters
----------
Expand Down
87 changes: 0 additions & 87 deletions src/neospy/pds.py

This file was deleted.

0 comments on commit 3b0a298

Please sign in to comment.