├── .gitignore ├── .vscode ├── tasks.json └── xrit-rx.code-workspace ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── requirements.txt ├── samples └── GK-2A LRIT VCDU TEST.bin └── src ├── ccsds.py ├── dash.py ├── demuxer.py ├── html ├── css │ ├── dash.css │ ├── dash.css.map │ └── dash.scss ├── favicon.ico ├── index.html └── js │ ├── dash.js │ └── tools.js ├── products.py ├── tools ├── decryption.md ├── enhance-ir.py ├── hrit-img.py ├── keymsg-decrypt.py ├── libjpeg │ ├── LICENSE │ ├── README │ └── jpeg.exe ├── lrit-add.py ├── lrit-img.py └── xrit-decrypt.py ├── xrit-rx.ini └── xrit-rx.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/xrit-rx.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/.vscode/xrit-rx.code-workspace -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.18.1 2 | pillow>=7.0.0 3 | pycryptodome>=3.9.4 4 | colorama>=0.4.3 5 | -------------------------------------------------------------------------------- /samples/GK-2A LRIT VCDU TEST.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/samples/GK-2A LRIT VCDU TEST.bin -------------------------------------------------------------------------------- /src/ccsds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/ccsds.py -------------------------------------------------------------------------------- /src/dash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/dash.py -------------------------------------------------------------------------------- /src/demuxer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/demuxer.py -------------------------------------------------------------------------------- /src/html/css/dash.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/css/dash.css -------------------------------------------------------------------------------- /src/html/css/dash.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/css/dash.css.map -------------------------------------------------------------------------------- /src/html/css/dash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/css/dash.scss -------------------------------------------------------------------------------- /src/html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/favicon.ico -------------------------------------------------------------------------------- /src/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/index.html -------------------------------------------------------------------------------- /src/html/js/dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/js/dash.js -------------------------------------------------------------------------------- /src/html/js/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/html/js/tools.js -------------------------------------------------------------------------------- /src/products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/products.py -------------------------------------------------------------------------------- /src/tools/decryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/decryption.md -------------------------------------------------------------------------------- /src/tools/enhance-ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/enhance-ir.py -------------------------------------------------------------------------------- /src/tools/hrit-img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/hrit-img.py -------------------------------------------------------------------------------- /src/tools/keymsg-decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/keymsg-decrypt.py -------------------------------------------------------------------------------- /src/tools/libjpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/libjpeg/LICENSE -------------------------------------------------------------------------------- /src/tools/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/libjpeg/README -------------------------------------------------------------------------------- /src/tools/libjpeg/jpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/libjpeg/jpeg.exe -------------------------------------------------------------------------------- /src/tools/lrit-add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/lrit-add.py -------------------------------------------------------------------------------- /src/tools/lrit-img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/lrit-img.py -------------------------------------------------------------------------------- /src/tools/xrit-decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/tools/xrit-decrypt.py -------------------------------------------------------------------------------- /src/xrit-rx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/xrit-rx.ini -------------------------------------------------------------------------------- /src/xrit-rx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam210723/xrit-rx/HEAD/src/xrit-rx.py --------------------------------------------------------------------------------