-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Time slider #22
Comments
Hey Alexey, do we have data for 2024? It looks like this is up until 2023? |
@Aleshere yes, we have real-time data, updated every few seconds.
Example: https://adsb.exposed/?zoom=6&lat=48.8503&lng=7.0313&query=5a39e027e487062e9944dc28315fa0e9 Last five minutes: https://adsb.exposed/?zoom=5&lat=39.6565&lng=-96.2402&query=56c83c59f309758aa839b61b6ecacd6c |
Amazing, works like a charm. Thank you |
If I only wanted to display flights between midnight and 7 am what can I add to the WHERE condition ? Looking in the tables I thought tohour(DateTime64) BETWEEN 0 AND 7 or hour BETWEEN 0 AND 7 might work. But neither did ! |
@syonist, write https://adsb.exposed/?zoom=5&lat=48.6313&lng=7.9321&query=ece72146892a323b5329eab3af09f667 Keep in mind that this is the time in UTC. The local time will be different. You can get something resembling the local time with
https://adsb.exposed/?zoom=4&lat=43.4419&lng=-82.2930&query=61ea9941cfab051e0dde29fdb4ca6b36 |
Red: night flights, Green: day flights, Blue: evening flights: https://adsb.exposed/?zoom=4&lat=66.1708&lng=22.2566&query=92cc010e703e3bb32d853f98c6b073e0 |
Very many thanks,
Tim
On Sunday 13 October 2024 at 11:11:24 BST, Alexey Milovidov ***@***.***> wrote:
Red: night flights, Green: day flights, Blue: evening flights:
https://adsb.exposed/?zoom=4&lat=66.1708&lng=22.2566&query=92cc010e703e3bb32d853f98c6b073e0
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
There is also limited direct access to the data:
(it has limits on the number of scanned records and queries) Note: to install
|
It can span for the whole time range (2022 .. now).
Workaround: it is already possible to simply add
AND time BETWEEN ... AND ...
in the WHERE condition in the query.The text was updated successfully, but these errors were encountered: