
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Spacetrace is a simple, lightweight, low-abstraction tool for visualizing astrodynamic trajectories. Spacetrace is agnostic of the physics, coordinate systems and the tools to generate the data. It's sole purpose is to plot trajectories and inspect them visually.
This tool should be used similarly to matplotlib's 3d plotting tool, but optimized for interactivity and inspection, as well as drawing large trajectories at a smooth framerate.
Spacetrace is a standard python package available on pypi:
pip install spacetrace
Spacetrace only depends on numpy as data interface and pyray for drawing.
The most basic usecase is as follows:
import spacetrace
scene = spacetrace.Scene()
scene.add_trajectory(epochs, states)
scene.add_static_body(0, 0, 0, radius=6.7e6, name='Earth', color='blue')
spacetrace.show_scene(scene)
where states
is a numpy array of size N x 3 or N x 6 and epochs is a numpy array of size N,
with the corresponding times values. This program will draw the trajectory and add a blue sphere,
representing Earth for reference.
For more details see the documentation within the source files (spacetrace/*
) or the examples (examples/*
)
add_xxx(...)
notation is replaced with more flexible add(Xxx(...))
This project is licensed under the MIT License. See the LICENSE file for details.
FAQs
A minimalist packadge for vizualizing 3D trajectories in space.
We found that spacetrace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.