{"id":44035937,"url":"https://github.com/z-vig/pycubeview","last_synced_at":"2026-02-07T20:01:09.936Z","repository":{"id":310119560,"uuid":"1038787516","full_name":"z-vig/pycubeview","owner":"z-vig","description":"A Hyperspectral Image Viewer for Python","archived":false,"fork":false,"pushed_at":"2026-02-07T00:06:59.000Z","size":768,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-07T06:05:43.151Z","etag":null,"topics":["gui-application","pyside6","spectral-analysis","spectral-data"],"latest_commit_sha":null,"homepage":"","language":"Python","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/z-vig.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,"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":"2025-08-15T20:20:35.000Z","updated_at":"2026-02-07T00:04:26.000Z","dependencies_parsed_at":"2025-11-24T02:01:06.607Z","dependency_job_id":null,"html_url":"https://github.com/z-vig/pycubeview","commit_stats":null,"previous_names":["z-vig/specview","z-vig/pycubeview"],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/z-vig/pycubeview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-vig%2Fpycubeview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-vig%2Fpycubeview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-vig%2Fpycubeview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-vig%2Fpycubeview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/z-vig","download_url":"https://codeload.github.com/z-vig/pycubeview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/z-vig%2Fpycubeview/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29206807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T17:44:10.191Z","status":"ssl_error","status_checked_at":"2026-02-07T17:44:07.936Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["gui-application","pyside6","spectral-analysis","spectral-data"],"created_at":"2026-02-07T20:01:08.517Z","updated_at":"2026-02-07T20:01:09.924Z","avatar_url":"https://github.com/z-vig.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pycubeview 🔎\n\nA Flexible and Interactive Spectral (and more!) Image Viewer for Python\n\n[![Unit Tests](https://github.com/z-vig/pycubeview/actions/workflows/ci.yml/badge.svg)](https://github.com/z-vig/pycubeview/actions/workflows/ci.yml) [![License: MIT](https://cdn.prod.website-files.com/5e0f1144930a8bc8aace526c/65dd9eb5aaca434fac4f1c34_License-MIT-blue.svg)](/LICENSE)\n---\n\n## Motivation ✨\n\nWhether it's an imaging spectrometer or an InSAR time-series, many remotely\nsensed scientific data comes in the form of a cube, which is here defined as\nany dataset that has spatial information in two dimensions and measured values\nin a third dimension. Below are listed some examples of scientific data cubes:\n\n- Hyperspectral Imagery\n- Multispectral Imagery\n- Spectral Maps from lab spectrometers\n- InSAR Time Series\n- Cloud Cover Evolution Map\n- LiDAR return counts\n- Scanning medical imagery\n- RGB Images\n- General Vector Fields\n- And Many More!\n\n## Installation ⬇️\n\n### GUI Application 💻\nTo use the GUI Application, download PyCubeView **[here](https://github.com/z-vig/pycubeview/releases/latest)**!\n\nSupport is available for Linux (Ubuntu Distribution), MacOS and Windows.\n\nFor Windows Users:\n1) Download the .zip file and extract all files\n2) The cubeview.exe file is found at: PyCubeView-windows \u003e main.dist \u003e cubeview.exe\n\nFor Mac Users:\n1) Downloading the .zip file will automatically give you a .app file\n2) PyCubeView currently ships unsigned (because that costs money 💲), so you\n   must change the permissions on the file before you run it.\n3) From within the directory you downloaded the file to, run:\n\n```bash\nxattr -d com.apple.quarantine CubeView.app\n```\n4) You can now double-click to run the app\n\n### Python API 🐍\n`pycubeview` can be directly install from the Python Package Index using `pip`.\n\n```bash\npip install pycubeview\n```\n\n## Usage ⚙️\n\n### GUI Application 💻\n\n\n### Python API 🐍\nThe basic CubeView GUI can be opened directly from the command line by ensuring you are in a python environment that has `pycubeview` installed and running\n\n```bash\ncubeview.exe\n```\n\nThe CubeView GUI can also be started from a python script.\n\n```python\nfrom pycubeview import open_cubeview\nopen_cubeview(image_data, cube_data, wvl_data)\n```\nWhere the data can optionally provided as either a Numpy-Array or a filepath to one of the supported file types.\n\n## Supported File Types 📂\n### Image and Cube Data\n#### `spectralio` files\n\n  - .geospcub\n  - .spcub\n\n#### `rasterio`-compatible files\n  - .img\n  - .bsq\n  - .tif\n\n### Wavelength Data\n  - .wvl\n  - .hdr\n  - .txt\n  - .csv\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-vig%2Fpycubeview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fz-vig%2Fpycubeview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fz-vig%2Fpycubeview/lists"}