{"id":15197156,"url":"https://github.com/anthonyborriello/table-dump1090","last_synced_at":"2026-02-09T00:01:37.116Z","repository":{"id":227484537,"uuid":"771557930","full_name":"anthonyborriello/table-dump1090","owner":"anthonyborriello","description":"A nice table to display your Dump1090 ADS-B json data","archived":false,"fork":false,"pushed_at":"2025-01-20T09:14:31.000Z","size":104,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-02T21:43:18.150Z","etag":null,"topics":["adsb","dump1090","flightaware","flightradar","fr24","php","piaware","raspberrypi"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/anthonyborriello.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":"2024-03-13T14:17:05.000Z","updated_at":"2025-01-20T09:14:33.000Z","dependencies_parsed_at":"2024-03-26T22:26:58.744Z","dependency_job_id":"56f42da9-38b4-4f4b-9588-6c3ce3c37e56","html_url":"https://github.com/anthonyborriello/table-dump1090","commit_stats":{"total_commits":48,"total_committers":1,"mean_commits":48.0,"dds":0.0,"last_synced_commit":"410ecc246ccfbf0b90c4593af5f0df3fe556a5ab"},"previous_names":["anthonyborriello/table-dump1090"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anthonyborriello/table-dump1090","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonyborriello%2Ftable-dump1090","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonyborriello%2Ftable-dump1090/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonyborriello%2Ftable-dump1090/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonyborriello%2Ftable-dump1090/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthonyborriello","download_url":"https://codeload.github.com/anthonyborriello/table-dump1090/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonyborriello%2Ftable-dump1090/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268185560,"owners_count":24209392,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"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":["adsb","dump1090","flightaware","flightradar","fr24","php","piaware","raspberrypi"],"created_at":"2024-09-28T00:43:21.257Z","updated_at":"2026-02-09T00:01:37.097Z","avatar_url":"https://github.com/anthonyborriello.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Table Dump1090\n\nThis project displays ADS-B flight data from the Dump1090 server in a dynamic HTML table.\n\n## Features\n\n- Real-time visualization of ADS-B flight data\n- Sorting and filtering of data by various attributes\n- Direct link to FlightRadar24 and ADS-B exchange for each flight\n\n## Installation\nFor Raspberry Pi users i developed a simple automatic installation script.  \nCopy and paste it in your terminal, than press enter.\n```\nsudo bash -c \"$(wget -O - https://raw.githubusercontent.com/anthonyborriello/table-dump1090/main/radar_table.sh)\"\n```\nOr you can proceed manually:\n1. Dump1090 server should already be installed to provide the required json data.\n2. Clone the repository  \n```\nsudo apt install git  \ngit clone https://github.com/anthonyborriello/table-dump1090\n```\nYou can alternatively download the required PHP file like this:\n```\nwget https://raw.githubusercontent.com/anthonyborriello/table-dump1090/main/radar_table.php\n```\n3. You should install PHP in your web server and enable it.    \nIf you are using lighttpd:  \n```\nsudo apt install -y $(apt-cache policy php | grep Candidate | awk '{print $2}' | sed -E 's/^[0-9]+://;s/\\+.*$//' | xargs -I{} echo php{} php{}-fpm php{}-cgi)\nsudo lighty-enable-mod fastcgi-php-fpm  \nsudo service lighttpd force-reload\n```\n## Customization\n\n1. In the `radar_table.php` file, customize the URL in the `$response` variable to match your Dump1090 server setup  \n(e.g., `'http://yourserveraddress:8080/data/aircraft.json'`)\n2. Locate the following lines of code:\n`$reference_point = array(41.9028, 12.4964);`\n3. Replace the values with your Latitude and Longitude:  \nexample for Rome: `41.9028, 12.4964`\n4. Save the changes and close the file.\n5. Insert the `radar_table.php` page into your web service folder (usually `/var/www/html/`).\n```\nsudo mv radar_table.php /var/www/html/\n```\n6. Reload the `radar_table.php` page in your web browser to see the updated flight data for the new location.\n\n\n## Usage\n\n1. Open the `radar_table.php` file in a web browser. (Usually http://raspberrypi/radar_table.php)\n2. Check the displayed flight data.\n3. Click on flight links for further information.\n\n## Contributing\n\nIf you would like to contribute to this project, follow these steps:\n\n1. Fork the repository.\n2. Create a branch for your changes (`git checkout -b feature/your-feature`).\n3. Commit your changes (`git commit -am 'Add new feature'`).\n4. Push the branch (`git push origin feature/your-feature`).\n5. Open a Pull Request.\n\n## Author\n\nAntonio Borriello [antonioborriello.wordpress.com](https://antonioborriello.wordpress.com)\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n![Radar_Table](https://github.com/anthonyborriello/table-dump1090/assets/57049017/73215194-b685-4642-8a65-ffa1bf935cee)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonyborriello%2Ftable-dump1090","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanthonyborriello%2Ftable-dump1090","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonyborriello%2Ftable-dump1090/lists"}