{"id":31021357,"url":"https://github.com/sisl/satellitedynamics.jl","last_synced_at":"2025-09-13T11:20:49.277Z","repository":{"id":45813226,"uuid":"158498976","full_name":"sisl/SatelliteDynamics.jl","owner":"sisl","description":"SatelliteDynamics.jl is a satellite dynamics modeling package written for Julia.","archived":false,"fork":false,"pushed_at":"2025-09-12T09:33:50.000Z","size":31002,"stargazers_count":63,"open_issues_count":2,"forks_count":7,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-09-12T11:39:19.550Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sisl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-11-21T06:05:51.000Z","updated_at":"2025-09-12T09:33:53.000Z","dependencies_parsed_at":"2024-05-30T18:09:19.663Z","dependency_job_id":"42b40b49-2037-44ad-9a6a-3800b241ad99","html_url":"https://github.com/sisl/SatelliteDynamics.jl","commit_stats":{"total_commits":157,"total_committers":6,"mean_commits":"26.166666666666668","dds":0.07006369426751591,"last_synced_commit":"ec79dacfee8b691e14e48872cb7fff2f58f6a3bb"},"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/sisl/SatelliteDynamics.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sisl%2FSatelliteDynamics.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sisl%2FSatelliteDynamics.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sisl%2FSatelliteDynamics.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sisl%2FSatelliteDynamics.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sisl","download_url":"https://codeload.github.com/sisl/SatelliteDynamics.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sisl%2FSatelliteDynamics.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274955739,"owners_count":25380669,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-13T02:00:10.085Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-09-13T11:20:47.977Z","updated_at":"2025-09-13T11:20:49.266Z","avatar_url":"https://github.com/sisl.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SatelliteDynamics.jl [![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://sisl.github.io/SatelliteDynamics.jl/stable/) [![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://sisl.github.io/SatelliteDynamics.jl/dev/) [![Build Status](https://github.com/sisl/SatelliteDynamics.jl/actions/workflows/CI.yaml/badge.svg?branch=main)](https://github.com/sisl/SatelliteDynamics.jl/actions/workflows/CI.yml?query=branch%3Amain) [![Coverage](https://codecov.io/gh/sisl/SatelliteDynamics.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/sisl/SatelliteDynamics.jl)\n\nSatelliteDynamics package is meant to address the needs of the satellite operator, academic researcher, and public enthusiast communities.\n\nCurrent high-fidelity satellite dynamics modeling software generally falls into two camps:\n1. It is commercially licensed and closed-source code, making it difficult, if not impossible, to be used by hobbyists and academic researchers.\n2. There is a steep learning curve which makes correct use of the underlying libraries difficult.\n\nThese two challenges make it an unfortunately common occurance that guidance, navigation, and control engineers will frequently reimplement common astrodynamics libraries for each new project.\n\nWith these two deficienties in mind, SatelliteDynamics.jl aims to provide a open-source, MIT-licensed, high fidelity astrodynamics toolbox to help make it easy to perform high-quality simulation and analysis of satellite attitude and orbit dynamics.\n\n## Getting Started: Installation And First Steps\n\nTo install the package, use the following command inside the Julia REPL:\n```julia\nPkg.add(\"SatelliteDynamics\")\n```\n\nTo load the package, use the command:\n\n```julia\nusing SatelliteDynamics\n```\n\n## Documentation\n\nThe documentation for the package can be found here: \u003chttps://sisl.github.io/SatelliteDynamics.jl/latest\u003e\n\nMore example code and more thorough documentation will be added as time permits.\n\n## Contributing\n\nContributions are welcome! \n\n### Local Development\n\n**Running Unit Tests**\n\nThe package has a suite of unit tests that can be run using the following command:\n\n```\njulia --project -e 'using Pkg; Pkg.test(\"SatelliteDynamics\")'\n```\n\nOr alternatively, you can run the tests from the package REPL:\n\n```zsh\njulia --project\n```\n\n```julia\n]; test\n```\n\n**Building the Documentation**\n\nTo build the documentation locally, you can use the following command:\n\n```\ncd docs\n```\n\nThen\n\n```\njulia --project make.jl\n```\n\nThe documentation will be built in the `docs/build` directory and can be viewed by opening the `index.html` file in a web browser.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsisl%2Fsatellitedynamics.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsisl%2Fsatellitedynamics.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsisl%2Fsatellitedynamics.jl/lists"}