Migrating to toolkit#112
Closed
SuperdoerTrav wants to merge 4 commits intomainfrom
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This update refactors SSAPy toward a leaner core package and aligns higher-level utilities with SSAPy-Toolkit.
Summary of changes
Removed plotting-focused tests and reduced plotting exposure in core SSAPy
Removed higher-level compute utilities that are now maintained in SSAPy-Toolkit
Updated top-level and docs README content to reference SSAPy-Toolkit
Added new symplectic propagators:
LeapfrogPropagator
Leapfrog4Propagator
Updated tests to reflect the reduced core surface area
Updated packaging and project metadata (pyproject.toml, requirements, docs text, etc.)
Removed the obsolete simple.py module and associated test
Adjusted tests that depend on unavailable Git LFS data so they skip only when required assets are missing
Removed core dependency declarations for:
matplotlib
hdf5-related support
pandas
imageio
Compute / API cleanup
The core ssapy.compute module was reduced to keep orbit propagation and observation geometry functionality in SSAPy while leaving higher-level utilities to the toolkit. Tests were updated accordingly.
Plotting / toolkit split
README and documentation text now point users to the companion project:
SSAPy-Toolkit https://github.com/llnl/SSAPy-Toolkit
for:
plotting tools
higher-level utilities
convenience workflows
additional coordinate conversion helpers
Lambertian brightness / magnitude utilities
New propagators
Added fixed-step symplectic propagators for conservative dynamics workflows:
LeapfrogPropagator
Leapfrog4Propagator
These are intended primarily for conservative force models and long-term orbital integrations.
Dependency cleanup
To better separate the SSAPy core package from higher-level visualization and auxiliary workflows, the following dependency categories were removed from core SSAPy requirements where applicable:
matplotlib
pandas
imageio
hdf5-related support
This keeps the core package lighter and shifts plotting / auxiliary workflow dependencies away from the base install.
Packaging / metadata
Updated package metadata and dependency declarations to better reflect the current core package structure, including updates to:
pyproject.toml
requirements.txt
README / docs text
Test updates
Removed obsolete tests for deleted or toolkit-moved functionality
Removed tests/test_simple.py
Updated compute and orbit tests
Added tests for the new leapfrog propagators