{"id":26578062,"url":"https://github.com/joshuagilgallon/cam-data","last_synced_at":"2026-04-17T07:32:58.757Z","repository":{"id":283450995,"uuid":"951781605","full_name":"JoshuaGilgallon/cam-data","owner":"JoshuaGilgallon","description":"Large collection of data about digital cameras","archived":false,"fork":false,"pushed_at":"2025-03-20T09:25:17.000Z","size":4385,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T10:29:55.812Z","etag":null,"topics":["camera","data"],"latest_commit_sha":null,"homepage":"","language":null,"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/JoshuaGilgallon.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":"2025-03-20T08:30:57.000Z","updated_at":"2025-03-20T09:30:04.000Z","dependencies_parsed_at":"2025-03-20T10:40:21.799Z","dependency_job_id":null,"html_url":"https://github.com/JoshuaGilgallon/cam-data","commit_stats":null,"previous_names":["joshuagilgallon/cam-data"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JoshuaGilgallon/cam-data","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshuaGilgallon%2Fcam-data","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshuaGilgallon%2Fcam-data/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshuaGilgallon%2Fcam-data/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshuaGilgallon%2Fcam-data/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoshuaGilgallon","download_url":"https://codeload.github.com/JoshuaGilgallon/cam-data/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoshuaGilgallon%2Fcam-data/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31920093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["camera","data"],"created_at":"2025-03-23T04:19:18.775Z","updated_at":"2026-04-17T07:32:58.718Z","avatar_url":"https://github.com/JoshuaGilgallon.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Camera Data Project\n\n## Overview\nThis repository contains a database of digital cameras with detailed specifications and technical information. The database includes information on about 3,835 camera models across 36 brands.\n\n## Data Statistics\n- **Total Camera Models:** 3,835\n- **Camera Brands:** 36\n- **Total lines of data:** 185,169\n- **Coverage:** Professional DSLRs, mirrorless cameras, compact cameras, and specialised equipment, plus much more.\n\n## Repository Structure\n```bash\n├───JSON\n│       brands.json \n│       camera_data.json # Primary data file with all camera information\n│       just_models.json # Just the camera models, in a JSON list\n│       models.json # The models but in a dictionary structure\n│\n│\n└───TXT\n        brands.txt # TXT file of every manufacturer, with each on a new line\n        models.txt # TXT file of every model, with each on a new line\n```\n\n\n## Available Data Formats\n\n### JSON\n- **camera_data.json** - Complete database with all camera specifications\n- **brands.json** - List of all camera brands\n- **models.json** - List of cameras grouped by brand (without specifications)\n- **just_models.json** - Simple list of all camera model names\n\n### Text\n- **brands.txt** - One camera brand per line\n- **models.txt** - One camera model per line\n\n### SQLite Database\nThe data is also available as a SQLite database with the following schema:\n- **brands** table - Information about camera manufacturers\n- **cameras** table - Basic camera model information\n- **specs** table - Detailed specifications for each camera\n\n# Example SQLite Queries\n\n### Find cameras with high megapixel counts:\n```sql\nSELECT b.name as brand, c.name as model, s.spec_value as megapixels\nFROM cameras c\nJOIN brands b ON c.brand_id = b.id\nJOIN specs s ON c.id = s.camera_id\nWHERE s.spec_name = 'effective megapixels' \nAND CAST(REPLACE(s.spec_value, '.', '') AS FLOAT) \u003e 30\nORDER BY CAST(REPLACE(s.spec_value, '.', '') AS FLOAT) DESC;\n```\n\n### Count cameras by brand:\n```sql\nSELECT b.name, COUNT(*) as camera_count\nFROM cameras c\nJOIN brands b ON c.brand_id = b.id\nGROUP BY b.name\nORDER BY camera_count DESC;\n```\n\n# Data Updates\nI will update the data ever so often. If a camera is missing please open an issue and I'll fix it.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshuagilgallon%2Fcam-data","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoshuagilgallon%2Fcam-data","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoshuagilgallon%2Fcam-data/lists"}