{"id":43576509,"url":"https://github.com/opensatelliteproject/opensatelliteproject","last_synced_at":"2026-02-03T23:16:39.940Z","repository":{"id":43478520,"uuid":"84694964","full_name":"opensatelliteproject/OpenSatelliteProject","owner":"opensatelliteproject","description":"Open Satellite Project Information","archived":false,"fork":false,"pushed_at":"2018-06-08T06:07:29.000Z","size":11,"stargazers_count":387,"open_issues_count":8,"forks_count":38,"subscribers_count":35,"default_branch":"master","last_synced_at":"2025-04-07T01:35:31.688Z","etag":null,"topics":["airspy","goes","goesdump","hackrf","hrit","lrit","noaa","open-satellite-project","osp","rtlsdr","satellite","sdr","sdrplay"],"latest_commit_sha":null,"homepage":"","language":null,"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/opensatelliteproject.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-03-12T02:46:59.000Z","updated_at":"2025-03-30T21:52:54.000Z","dependencies_parsed_at":"2022-08-13T01:00:15.948Z","dependency_job_id":null,"html_url":"https://github.com/opensatelliteproject/OpenSatelliteProject","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/opensatelliteproject/OpenSatelliteProject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensatelliteproject%2FOpenSatelliteProject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensatelliteproject%2FOpenSatelliteProject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensatelliteproject%2FOpenSatelliteProject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensatelliteproject%2FOpenSatelliteProject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/opensatelliteproject","download_url":"https://codeload.github.com/opensatelliteproject/OpenSatelliteProject/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/opensatelliteproject%2FOpenSatelliteProject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29060833,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T23:14:54.203Z","status":"ssl_error","status_checked_at":"2026-02-03T23:14:50.873Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["airspy","goes","goesdump","hackrf","hrit","lrit","noaa","open-satellite-project","osp","rtlsdr","satellite","sdr","sdrplay"],"created_at":"2026-02-03T23:16:37.518Z","updated_at":"2026-02-03T23:16:39.935Z","avatar_url":"https://github.com/opensatelliteproject.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# OpenSatelliteProject\nProject Information\nTODO: Write this page.\n\n# Compiling Guide (Ubuntu 16.04)\n\nThat compile guide is a adapted version from @hdoverobinson that was published on gist and OSP Rocket chat. He also created a script to automatically download deps and build OSP! You can check it here: [https://gist.github.com/hdoverobinson/82e3f08c34052d36c92e8db5a027d129](https://gist.github.com/hdoverobinson/82e3f08c34052d36c92e8db5a027d129)\n\n1. Download needed dependencies\n```bash\n# Create working dir\nmkdir -p OSP/deps\nmkdir -p OSP/bin\ncd OSP/deps\n# Add upstream drivers and gnuradio modules from myriadrf\nsudo add-apt-repository ppa:myriadrf/drivers -y\nsudo add-apt-repository ppa:myriadrf/gnuradio -y\n# Add Mono Upstream key\nsudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF\necho \"deb http://download.mono-project.com/repo/debian xenial main\" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list\n# Update APT Cache\nsudo apt-get update\n# Install required deps\nsudo apt-get -y install libairspy-dev libusb-1.0-0-dev libhackrf-dev libhackrf0 libaec0 libaec-dev mono-complete monodevelop nuget libopenal-dev referenceassemblies-pcl ttf-mscorefonts-installer gtk-sharp3 build-essential git\n# Install MonoGame (Not required for Web Version)\nwget http://www.monogame.net/releases/v3.5.1/monogame-sdk.run\nchmod +x monogame-sdk.run\nsudo ./monogame-sdk.run\n# Get back to root of OSP folder\ncd .. \n```\n\n2. Compiling Demodulator and Decoder\n```bash\n# Clone xritdemod repository\ngit clone https://github.com/opensatelliteproject/xritdemod.git\n# Enter on folder\ncd xritdemod\n# Compile / Install libcorrect\nmake libcorrect\nsudo make libcorrect-install\n# Compile / Install libSatHelper\nmake libSatHelper\nsudo make libSatHelper-install \n# Compile / Install upstream librtlsdr\nmake librtlsdr\nsudo make librtlsdr-install \n# Compile / Test xritdemod\nmake\nmake test\n# Copy binares to bin folder\ncp decoder/build/xritDecoder demodulator/build/xritDemodulator ../bin\n# Back to OSP folder\ncd ..\n```\n\n3. Compiling Decompressor Lib\nThat library is needed for decompressing LRIT/HRIT Files. It's a wrapper to `libaec`.\n```bash\n# Clone Decompressor repository\ngit clone https://github.com/opensatelliteproject/decompressor.git\ncd decompressor\n# Create build folder and makefile scripts\nmkdir -p build\ncd build\ncmake ..\n# Build\nmake\n# Install\nsudo make install\nsudo ldconfig\n# Back to OSP Folder\ncd ../..\n```\n\n4. Compiling GOES Dump\n```bash\n# Clone goesdump repository\ngit clone https://github.com/opensatelliteproject/goesdump.git\ncd goesdump\n# Restore Nuget dependencies\nnuget restore goesdump.sln\n# Build GOES Dump\nmdtool build goesdump.sln -c:Release\n# Copy Binaries to binary folder\ncp goesdump/bin/Release/* ../bin\n# Back to OSP Dir\ncd ..\n```\n\n5. Get the Web Interface\n\nThe web interface package can be downloaded here: https://github.com/opensatelliteproject/goesdump/releases/tag/1.0.2-beta named as `goes-web.zip`. Just extract all content under a `web` folder inside `OSP/bin`.\n```bash\n# Download it\nwget https://github.com/opensatelliteproject/goesdump/releases/download/1.0.2-beta/goesdump-web.zip\nmkdir OSP/bin/web -p\n\n# Extract it\nunzip goesdump-web.zip -d OSP/bin/web\n```\n\nNow you should have all needed binaries under `OSP/bin` folder.\n\n# Support\nThere is a RocketChat page where you can ask questions and suggest features: [https://osp.teske.net.br/](https://osp.teske.net.br/).\n\n# GOES Dump Configuration File\n\nNow GOES Dump config file is a SQLite database named `config.db`. All configs can be changed on WebUI and you can also open the `config.db` with [SQLite Browser](http://sqlitebrowser.org/)\n\n# Configuring Syslog for GOES Dump Headless\n\nEdit the file `/etc/rsyslog.conf` and find this lines:\n```\n# provides UDP syslog reception\n#module(load=\"imudp\")\n#input(type=\"imudp\" port=\"514\")\n```\n\nUncomment the last two save and restart rsyslog:\n```\n# provides UDP syslog reception\nmodule(load=\"imudp\")\ninput(type=\"imudp\" port=\"514\")\n```\n\n`service rsyslog restart`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensatelliteproject%2Fopensatelliteproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensatelliteproject%2Fopensatelliteproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensatelliteproject%2Fopensatelliteproject/lists"}