Flight Map......where?
Moderators: Staff, HR, Flight Ops
Flight Map......where?
What's the deal with the flight map? Temporarily not working? I like to check that out occasionally during the day, and not having it is a real bummer
- 1691
- Member with over 30 posts
- Posts: 1059
- Joined: Mon Aug 20, 2007 8:36 am
- Location: Long Island, NY
- Contact:
Re: Flight Map......where?
+1
Same issue here. I like to watch myself when I do it...uh...I mean fly. Its quite disturbing. The map being inop sucks too.
Same issue here. I like to watch myself when I do it...uh...I mean fly. Its quite disturbing. The map being inop sucks too.
Allan Burek-1691
Coordinator, Aircraft Maintenance Operations
mx@globecargova.org
Live Flight Deck Camera
Coordinator, Aircraft Maintenance Operations
mx@globecargova.org
Live Flight Deck Camera
Re: Flight Map......where?
Yep, I like to watch myself while I'm doing it too.....flying that is
Re: Flight Map......where?
Well, I'm really into watching how others do it.
I'm talking about the flights of course.
I miss it already!
I'm talking about the flights of course.
I miss it already!
Re: Flight Map......where?
ROFL.....this thread gets better with every new post
Re: Flight Map......where?
Well, you stumbled on the map when no one is actually flying! The current design just puts up the No Pilots Actively Flying message if there are no flights. To avoid confusion, I will just recode the page to always show the map!
Re: Flight Map......where?
Tomas,
I was actually doing it when i decided to take a look at myself doing it, and while i was sure i was doing it myself and also made sure i was connected to the net so that others could see me doing it, i didn't see myself doing it nor anyone else doing it and that was a great turnoff, i can tell you. I also did not receive any comments on my messy way of doing it, so i'm sure others did not see it either (my flying that is offcourse).
I was actually doing it when i decided to take a look at myself doing it, and while i was sure i was doing it myself and also made sure i was connected to the net so that others could see me doing it, i didn't see myself doing it nor anyone else doing it and that was a great turnoff, i can tell you. I also did not receive any comments on my messy way of doing it, so i'm sure others did not see it either (my flying that is offcourse).
Re: Flight Map......where?
I am flying a TTN727 from KIAH to KMCI and is not showing in the map...
Re: Flight Map......where?
Yep, sorry Tomas, when I flew from PGUM to PHNL last night, it still claimed that no one was flying. Which I know was a dirty, filthy lie!!!!! Ok, maybe it wasn't that big of a deal, hahaha. It actually worked out pretty well, since no one was witness to my bonehead missed approach at PHNL.......ack, now I just told everyone
Re: Flight Map......where?
Ah... Ok, that is a different issue. Are you guys using GCP? It may be that something in the code broke. I will have a look but nothing has changed on the server side that I am aware of.
[Update]
Ok, I just remembered that I put in one small change and started running all internal dates in UTC format. I guess the PIREP clients didn't get the memo so they kept sending the times over in local time. It would have been all good if it wasn't for the fact that the server now thought that all those entries were too old to display and removed them from the map.
It should be fixed now - thanks for the heads-up!
[Update]
Ok, I just remembered that I put in one small change and started running all internal dates in UTC format. I guess the PIREP clients didn't get the memo so they kept sending the times over in local time. It would have been all good if it wasn't for the fact that the server now thought that all those entries were too old to display and removed them from the map.
It should be fixed now - thanks for the heads-up!
Re: Flight Map......where?
Hi Tomas,
I am indeed using GCP
I am indeed using GCP
Re: Flight Map......where?
YES, thanks Tomas, I see airplanes again. And they look like they are having so much fun.......there's that darn sexual innuendo again
Re: Flight Map......where?
Just a follow-up for those who are technically inclined. Since PHP 5.1, the date functions want a timezone otherwise they start to give warnings and fill up our logs. So I went ahead and changed the default timezone to UTC across all the code in the whole site thinking that being consistent was good. It turns however that there are a few places here and there on the site where I use the SQL "NOW()" function to enter a time stamp into the database and the position table where GCP (and FSFK) writes the flight info was one of them.
It turns out that the SQL time functions look at the server time. Since the server is located in Utah (Mountain timezone), the code that was checking if the position was "stale" indeed saw a 6 hour difference and deleted all the entries before they could be displayed on the map. There were two possible solutions to this problem:
It turns out that the SQL time functions look at the server time. Since the server is located in Utah (Mountain timezone), the code that was checking if the position was "stale" indeed saw a 6 hour difference and deleted all the entries before they could be displayed on the map. There were two possible solutions to this problem:
- Change all the SQL functions to write the time stamps in UTC format
- Change the default time zone to be Mountain time