FlightTracker
- 6 Devlogs
- 15 Total hours
A simple flight tracker map
A simple flight tracker map
Finished a little bit of polishing and cleanup, the site is now live and I think version 1 is ready to be shipped.
I’ve migrated again from adsb.fi to airplanes.live due to numerous cors/proxy issues that adsb.fi has. Luckily they share the same response structure so it was really simple to migrate.
You can now click a flight on the map to lock its position to the center of the screen, which is useful for live tracking the position of flights.
Made a couple polishing changes to map icons/tooltips. Also published a live demo to github pages.
This is a combination of previous work from a while ago and new work I just did, so please excuse the lengthy devlog time.
I decided to return to working on this project, and made a few changes. First, I migrated the api provider from airlabs to adsb.fi. I also used adsbdb for route info (departure and arrival). New features include location/flight search, which I will outline below.
Data sources have been migrated from airlabs to adsb.fi and adsbdb, and as a result, this increases the maximum calls from around 1000 calls per month to 1 call per second, however the region is limited to a 250 nm radius.
I have also migrated away from using a python render script, so now the page will not take 1 minute to load and lag the entire pc.
Airport pins are now visible on the map and can be toggled alongside weather, night, and fir zones.
You can now search directly for a location using the searchbar, which should help now that area is limited. You can also just choose to pick your current location.
You can now directly enter flight numbers/callsigns and be pointed straight to where said flight is on the map, no matter whether or not it is in the 250 nm radius.
Today I worked on creating the backend for the website. Honestly it took a while finding the right api as many turned out to block foreign access through Render. I did eventually land on using AirLabs as the api provider, and so far it works pretty well and I even got aircraft plotted on the map with the correct rotation angle.