{"id":16371567,"url":"https://github.com/tom-draper/array-3d-viz","last_synced_at":"2025-03-21T01:31:35.663Z","repository":{"id":38745984,"uuid":"497067988","full_name":"tom-draper/array-3d-viz","owner":"tom-draper","description":"A tool for visualizing arrays and matrices in 3D space.","archived":false,"fork":false,"pushed_at":"2024-11-23T06:57:39.000Z","size":1657,"stargazers_count":23,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-17T19:39:41.616Z","etag":null,"topics":["3d","array","array-view","array-viewer","array-visualizer","data","data-visualisation","data-visualization","dataviz","interactive-visualization","interactive-visualizations","javascript","matrix","matrix-visualizer","threejs","typescript","viewer","visualization","visualizer","vizualisation"],"latest_commit_sha":null,"homepage":"https://array-3d-viz.vercel.app","language":"TypeScript","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/tom-draper.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}},"created_at":"2022-05-27T16:37:18.000Z","updated_at":"2025-02-15T06:55:16.000Z","dependencies_parsed_at":"2024-06-22T19:22:58.037Z","dependency_job_id":null,"html_url":"https://github.com/tom-draper/array-3d-viz","commit_stats":{"total_commits":162,"total_committers":3,"mean_commits":54.0,"dds":"0.48765432098765427","last_synced_commit":"9e62cff914c692fa6b0263de671af72ee957145b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-draper%2Farray-3d-viz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-draper%2Farray-3d-viz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-draper%2Farray-3d-viz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tom-draper%2Farray-3d-viz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tom-draper","download_url":"https://codeload.github.com/tom-draper/array-3d-viz/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244721201,"owners_count":20498905,"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","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":["3d","array","array-view","array-viewer","array-visualizer","data","data-visualisation","data-visualization","dataviz","interactive-visualization","interactive-visualizations","javascript","matrix","matrix-visualizer","threejs","typescript","viewer","visualization","visualizer","vizualisation"],"created_at":"2024-10-11T03:08:53.517Z","updated_at":"2025-03-21T01:31:35.305Z","avatar_url":"https://github.com/tom-draper.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Interactive 3D Visualizer for Arrays\n\nA tool for visualizing arrays and matrices in 3D space using Three.js.\n\nHosted at: https://array-3d-viz.vercel.app\n\n### Features\n- Works with 1D, 2D or 3D arrays\n- Paste array data from clipboard or read from file\n- Cell color scaled by relative value\n- Full camera movement: rotation (mouse), zoom (scroll wheel), translation (arrow keys)\n- Array dimension display (bottom left)\n- Query input for highlighting values or value ranges (bottom right)\n- Array value histogram (bottom right)\n\n\u003cbr\u003e\n\n![Data](https://user-images.githubusercontent.com/41476809/179063555-7dbf08d4-ded9-4131-b4bf-b6b619e8e715.png)\n\n![Data2](https://user-images.githubusercontent.com/41476809/179064728-ac07c0d0-3b9e-42d1-a979-85ba35b49aac.png)\n\n![Data3](https://user-images.githubusercontent.com/41476809/179065260-ac1415f9-d0b8-4d4c-b03b-1be5e6d54b50.png)\n\n## Getting Started\n\n### Installation\n\n#### Install packages\n\n```bash\nnpm install\n```\n\n#### Compile TypeScript files\n\n```bash\nnpm run build\n```\n\n### Usage \n\n####  Option 1: Array file (.json, .npy, etc.)\n\nStart the node server providing the path to your array file.\n\n```bash\nnode main.js path/to/filename.ext\n```\n\nThen open \u003ccode\u003elocalhost:8080\u003c/code\u003e in a browser to view the visualization.\n\n##### Compatibility \n- [x] JSON (.json) \n- [x] NumPy (.npy, .npz)\n- [ ] Pickle (.pickle)\n- [ ] CSV (.csv)\n- [ ] Binaries\n\nTo load .npy or .npz files, Python must be installed along with the NumPy library.\n\n#### Option 2: Paste JSON array from clipboard\n\n```bash\nnode main.js\n```\n\nThen open \u003ccode\u003elocalhost:8080\u003c/code\u003e in a browser and paste your JSON array into the input box. Ensure the JSON is valid and there are no trailing commas after any final elements in a list.\n\n### Example JSON (2 x 4 x 3)\n\n```json\n[\n  [\n    [1, 2, 3],\n    [4, 5, 6],\n    [7, 8, 9],\n    [10, 11, 12]\n  ],\n  [\n    [13, 14, 15],\n    [16, 17, 18],\n    [19, 20, 21],\n    [22, 23, 24]\n  ]\n]\n\n```\n\n![Data4](https://user-images.githubusercontent.com/41476809/179065871-d10666a7-6091-49f8-a26f-01cfd9bca5a2.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-draper%2Farray-3d-viz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftom-draper%2Farray-3d-viz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftom-draper%2Farray-3d-viz/lists"}