{"id":24360402,"url":"https://github.com/dms-codes/amsatorg","last_synced_at":"2026-06-04T19:31:19.047Z","repository":{"id":169618359,"uuid":"372819932","full_name":"dms-codes/amsatorg","owner":"dms-codes","description":"Satellite Tracking Script This Python script allows you to retrieve real-time information about various amateur radio satellites. It provides two main functions:  GetStatus(satname): This function retrieves and displays the status of a satellite, including recent reports, callsigns","archived":false,"fork":false,"pushed_at":"2024-06-29T09:04:48.000Z","size":7,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T08:34:48.680Z","etag":null,"topics":["amsat","python","radioamateur","satellite"],"latest_commit_sha":null,"homepage":"https://github.com/dms-codes/amsatorg","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dms-codes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2021-06-01T12:21:18.000Z","updated_at":"2024-06-29T09:04:51.000Z","dependencies_parsed_at":null,"dependency_job_id":"ab413c6d-18b9-44aa-92bb-51d2472c8936","html_url":"https://github.com/dms-codes/amsatorg","commit_stats":null,"previous_names":["dms-codes/amsatorg"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dms-codes/amsatorg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Famsatorg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Famsatorg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Famsatorg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Famsatorg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dms-codes","download_url":"https://codeload.github.com/dms-codes/amsatorg/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dms-codes%2Famsatorg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33917183,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-04T02:00:06.755Z","response_time":64,"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":["amsat","python","radioamateur","satellite"],"created_at":"2025-01-18T21:19:40.205Z","updated_at":"2026-06-04T19:31:19.019Z","avatar_url":"https://github.com/dms-codes.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Satellite Tracking Script\n\nThis Python script allows you to retrieve real-time information about various amateur radio satellites. It provides two main functions:\n\n1. `GetStatus(satname)`: This function retrieves and displays the status of a satellite, including recent reports, callsigns, and grid squares. It uses the AMSAT API to fetch this information.\n\n2. `GetPasses(grid, satname)`: This function retrieves and displays the next passes of a satellite over a specific grid location. It provides information such as pass date, time, duration, azimuth of acquisition of signal (AOS), maximum elevation, azimuth of maximum elevation, and azimuth of loss of signal (LOS).\n\n## Usage\n\nTo use this script, you need to have Python installed on your system. You can run the script by executing the following commands in your terminal:\n\n1. Install the required libraries (if not already installed):\n\n```bash\npip install requests\n```\n\n2. Run the script with the following command:\n\n```bash\npython satellite_tracking.py\n```\n\nMake sure to modify the `grid` and `sat_names` variables within the script to match your desired grid location and list of satellite names for tracking. By default, the script is configured to track the following satellites:\n\n- AISAT-1\n- CubeBel-1\n- CUTE-1\n- LilacSat-2\n- FS-3\n\nYou can customize the list of satellites by updating the `sat_names` variable.\n\n## Examples\n\nHere are some examples of how to use the script:\n\n```python\n# Retrieve status information for a satellite (e.g., IO-86)\nstatus_info = GetStatus(\"IO-86\")\nprint(status_info)\n\n# Retrieve upcoming passes for a satellite (e.g., IO-86) over a specific grid (e.g., OI33)\npass_info = GetPasses(\"OI33\", \"IO-86\")\nprint(pass_info)\n\n# Retrieve the first upcoming pass for a satellite (e.g., IO-86) over a specific grid (e.g., OI33)\nfirst_pass_info = Get1stPass(\"OI33\", \"IO-86\")\nprint(first_pass_info)\n\n# Retrieve the first upcoming passes for a list of satellites (e.g., sat_names) over a specific grid (e.g., OI33)\nGetAllSat1stPass(\"OI33\", sat_names)\n```\n\nPlease note that you need an internet connection to fetch real-time satellite information from the AMSAT API.\n\n## Dependencies\n\nThis script relies on the following Python library:\n\n- `requests`: This library is used to make HTTP requests to the AMSAT API for retrieving satellite information. Install it using the `pip` command as mentioned above.\n\n## Disclaimer\n\nThis script is provided as-is and may be subject to changes in the AMSAT API or other external factors. Use it responsibly and consider any usage restrictions or terms of use imposed by the AMSAT API provider.\n\nFeel free to customize and extend the script to suit your specific needs or integrate it into other projects as necessary.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdms-codes%2Famsatorg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdms-codes%2Famsatorg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdms-codes%2Famsatorg/lists"}