{"id":21437796,"url":"https://github.com/ymorsi7/quranicvisualization","last_synced_at":"2026-04-15T18:32:22.622Z","repository":{"id":262149166,"uuid":"886327943","full_name":"ymorsi7/QuranicVisualization","owner":"ymorsi7","description":"A visual exploration tool for the Holy Quran using D3.js treemaps.","archived":false,"fork":false,"pushed_at":"2024-11-10T21:22:37.000Z","size":2846,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T23:42:40.549Z","etag":null,"topics":["css","d3","d3js","data","data-visualization","html","islam","islamic","javascript","js","quran","quranic","treemaps","visualization"],"latest_commit_sha":null,"homepage":"https://ymorsi7.github.io/QuranicVisualization/","language":"HTML","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/ymorsi7.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":"2024-11-10T18:33:17.000Z","updated_at":"2024-11-10T21:27:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"6d2a202b-abfd-4e6a-8ab1-a5642c418505","html_url":"https://github.com/ymorsi7/QuranicVisualization","commit_stats":null,"previous_names":["ymorsi7/quran-interactive-visualization"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ymorsi7/QuranicVisualization","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymorsi7%2FQuranicVisualization","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymorsi7%2FQuranicVisualization/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymorsi7%2FQuranicVisualization/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymorsi7%2FQuranicVisualization/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ymorsi7","download_url":"https://codeload.github.com/ymorsi7/QuranicVisualization/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ymorsi7%2FQuranicVisualization/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31854763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"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":["css","d3","d3js","data","data-visualization","html","islam","islamic","javascript","js","quran","quranic","treemaps","visualization"],"created_at":"2024-11-23T00:29:22.640Z","updated_at":"2026-04-15T18:32:22.575Z","avatar_url":"https://github.com/ymorsi7.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quranic Ayat Explorer\n\n![Quranic Visualization Demo](demo.png)\n\nA visual exploration tool for the Holy Quran using D3.js treemaps. This project lets you explore Quranic verses in an interactive and visually appealing way.\n\n## Why I Built This\n\nI wanted to create something that would let people see the entire Quran in a single, visually appealing view. I chose to use a treemap visualization because it's perfect for showing the hierarchical structure of the Quran - you can easily see how different Surahs (chapters) compare in size and explore individual verses within them.\n\nSome key design choices I made:\n- Each Surah has its own color to create clear visual separation\n- Important verses are highlighted in gold for easy spotting\n- Added zoom/pan features when I realized smaller verses were hard to click\n- Included a search bar that greys out non-matching verses (try searching \"love\"!)\n- Side panel shows the full verse when you click on any section\n\n## Setup\n\n1. Clone this repo\n2. Make sure you have all these files:\n```\nindex.html\nscript.js\nTheQuranDataset.json\nquran.png\nsmiling.png\n```\n3. Start a local server (I use Python's `python -m http.server 8000`)\n4. Open `localhost:8000` in your browser\n\n## How It Works\n\n- The treemap shows all verses of the Quran\n- Each rectangle represents a verse, grouped by chapter\n- Gold highlights = notable verses\n- Click any verse to see its details in the side panel\n- Use the search bar to filter verses by keyword\n- Scroll to zoom, drag to pan around\n\n## Development Story\n\nThis was a solo project that took several iterations to get right. The biggest challenge was actually finding usable data - I spent about an hour wrestling with a Kaggle dataset that used pipes instead of commas before finding a better one.\n\nThe development process went something like this:\n\n1. Data prep (~1 hour)\n   - First attempt with pipe-separated data failed\n   - Found and formatted a cleaner dataset\n\n2. Basic visualization (~2 hours)\n   - Got D3.js treemap working\n   - Figured out how to map the data correctly\n   - Added verse plotting\n\n3. Making it look good (~30 min)\n   - Added dark theme\n   - Styled search bar and panels\n   - Made sure everything was readable\n\n4. Improvements (~1-2 hours)\n   - Added search functionality\n   - Fixed performance issues\n   - Converted CSV to JSON for faster loading\n   - Added zoom/pan for better interaction with small verses\n   - Made borders thinner for cleaner look\n\nThe trickiest part was getting the data to play nice with the treemap. Once that was working, adding features like search was pretty straightforward.\n\n## Made With\n\n- D3.js v7\n- Vanilla JavaScript\n- A lot of trial and error with data formats\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymorsi7%2Fquranicvisualization","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fymorsi7%2Fquranicvisualization","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fymorsi7%2Fquranicvisualization/lists"}