I think the reference to 61.107(b) is only relevant to the 10 hours of solo.Except as provided in paragraph (k) of this section, a person who applies for a private pilot certificate with an airplanecategory and multiengine class rating must log at least 40 hours of flight time that includes at least 20 hours of flight training from an authorized instructor and 10 hours of solo flight training in the areas of operation listed in § 61.107(b)(2)
I’m confused why I’m seeing no hours for flight training for a multi engine add-on. I’m guessing you are interpreting 61.109b to say that the 20 hours instruction must be in a multi engine aircraft, and I don’t think it means that.
I think the reference to 61.107(b) is only relevant to the 10 hours of solo.
The second piece is you refer to the multi-engine "add-on". ... That said, per 61.63, it appears (on my reading - repeat disclaimer above) that there are no specific training minimums required, just appropriate sign-off's for most category/class or type add-ons. So I would generally ignore the Ratings Progress screen for all but your first rating.
Hi, Tom. Note that I’m traveling and will be very slow to respond to anything over the next few weeks (little internet)Hey! Thank you for all the hard work
I was wondering - I noticed an airport that isn't really one. On the website, it says "Add\Edit airport" under Airports. But I don't see any editing options, only adding.
https://github.com/ericberman/MyFlightbookWeb/issues/Cool thanks
Is there any public issue tracker or suggestions mechanism to submit ideas or bugs?
What is the suggestion for logging full motion sim time toward the ATP? I only use Myflightbook (no paper logbook), so I'm not sure how I should log the sim time. I have 1492 hrs so I need 8 more hours to my 1500. Do I log it only as sim time (I can't log it as total time)? When I generate an 8710, how do I account for those 8 hours I need? I just started indoc at a regional and I don't want to make a disaster of logging this time. Thanks in advance.
@EricBe what designates a flight or plane as TAA? I’ve got some recent flights with a club 182 which show as TAA (appropriate as it’s G5, G3X, GTN750 & GFC-500 equipped) but all my time in a DA-40NG are not showing as TAA. I’ve looked at flight properties and don’t see it. I’ve verified that the airplane model is chosen (DA40NG). What am I missing?
The aircraft types are user-defined - you can add one if yours is not there - which is why you can see multiple definitions for the same model, sometimes with minor variations in how they are named.@EricBe what designates a flight or plane as TAA? I’ve got some recent flights with a club 182 which show as TAA (appropriate as it’s G5, G3X, GTN750 & GFC-500 equipped) but all my time in a DA-40NG are not showing as TAA. I’ve looked at flight properties and don’t see it. I’ve verified that the airplane model is chosen (DA40NG). What am I missing?
Other answers above are correct. Looks like the DA40NG in the system is flagged as being GLASS but not as being TAA. There's a difference: glass is but one requirement for being TAA; see 61.129, but you also need a continuously visible PFD, continuously visible MFD, and at least a 2-axis autopilot.@EricBe what designates a flight or plane as TAA? I’ve got some recent flights with a club 182 which show as TAA (appropriate as it’s G5, G3X, GTN750 & GFC-500 equipped) but all my time in a DA-40NG are not showing as TAA. I’ve looked at flight properties and don’t see it. I’ve verified that the airplane model is chosen (DA40NG). What am I missing?
Hee hee! I've been doing that tongue-in-cheek "eternal gratitude...for a year" for something like 2 years now, and you're just the 2nd person who has commented about the (quite deliberate) contradiction.By the way @EricBe , I do enjoy the annual emails I get right around Christmas about your "eternal" gratitude expiring.
Other answers above are correct. Looks like the DA40NG in the system is flagged as being GLASS but not as being TAA. There's a difference: glass is but one requirement for being TAA; see 61.129, but you also need a continuously visible PFD, continuously visible MFD, and at least a 2-axis autopilot.
But Mark and Russ have pointed out how you can indicate a given airframe is TAA even if the model itself is not inherently TAA. You can even specify the date of an upgrade, if it was an upgrade; flights prior to that date are not TAA but flights after that date are.
More blathering at https://myflightbookblog.blogspot.com/2018/07/technically-advanced-airplanes-aircraft.html and https://myflightbookblog.blogspot.com/2019/12/glass-panels-and-technically-advanced.html
Ha fun idea. Only trick is knowing which fields should cross-fill from that. Lots of integer properties, but for most I don't have semantics for what they mean, they're just numbers, so I'd need to tag them. E.g., do you cross-fill from approaches? Landings? Full-stop landings? Something else?Feature request: Have the ability to cross-fill from total landings like you can cross-fill from total time. I would like to be able to fill the full-stop fields and glider tows. Please & thank you. This would save me approximately 4.5 seconds per week.
Do you not have the same issue with time? And why isn't everything as simple as I think it should be?Ha fun idea. Only trick is knowing which fields should cross-fill from that. Lots of integer properties, but for most I don't have semantics for what they mean, they're just numbers, so I'd need to tag them. E.g., do you cross-fill from approaches? Landings? Full-stop landings? Something else?
No, not really. Properties are identified as being integers (1, 2, 3...), decimals, monetary values (like decimals), true/false, dates, or bits of text. There are a set of additional flags that confer some semantics on them. For decimals, there's a "This is not a time" flag. The main motivator for this is so that I can tell whether something should be displayed in decimal format ("1.5" for 90 minutes) or in hh:mm format ("1:30" for 90 minutes). So my rule is very simple: any decimal field that is not marked as "not a time" can be cross-filled from the Total Time field.Do you not have the same issue with time? And why isn't everything as simple as I think it should be?
Can’t think of an easy way to do this off the top of my head. Just for curiosity? Or is there a purpose to knowing?@EricBe is there a way to tell what your highest "trailing 12 months" (or 90 days, or 30 days or any other value) total is? I know I can get the annual totals for each year, of course, and I can get a trailing 12 months from today, but I was interested what is the most number of hours I have ever flown in a rolling 12-month period. Short of doing a rather tedious search updating one day at a time, that is!
Can’t think of an easy way to do this off the top of my head. Just for curiosity? Or is there a purpose to knowing?
Oh, the code to do this is trivial (and actually simpler than your proposal: you use a queue and add things at one end and remove them at the other if they're more than a year earlier); I actually have this code elsewhere in the admin tools. I just don't have any code currently in production that can produce this based on your flights. Could be interesting for the achievements page or the analysis page, I suppose...Curiosity.
But come on now, an "easy way"? I didn't ask for an "easy way", I just demanded it be done to satisfy my own purposes. Which are many and mysterious.
I mean, there's always the brute-force method - start with today, go back a year, total up the time. Then step back to yesterday, go back a year, total up the time. Repeat for the last 29
These are the things I expect of a free app.
Yep. On the website, go to Airports->Add/Edit airports. I suggest using a 5- or 6- character/digit code to avoid future conflicts with actual ICAO/IATA/FAA codes. It will be live on the website immediately, and the mobile apps will get it when I update their databases, which is a few times a year.Curious - I often fly from a private/uncharted field, is there a way to add that somewhere such that the mapping feature could display correctly for those flights?
I'm afraid you don't. iOS and Android layout engines aren't nearly as flexible as HTML is on the web, it would be a ton of work.@EricBe —- I figured out how to move the hour entry slots around for the web version using the preferences. And got it in a sequence I like.
How do I the similar switcheroo for mobile (iPhone)?
You could get a rough idea of where to look by going to the analysis tab and grouping by week (the shortest interval if you want all data) and looking for the steepest section of the total line.Curiosity.
But hey, that's not THAT different than the "Visited Airports" map or the airport quiz, is it?
But come on now, an "easy way"? I didn't ask for an "easy way", I just demanded it be done to satisfy my own purposes. Which are many and mysterious.
I mean, there's always the brute-force method - start with today, go back a year, total up the time. Then step back to yesterday, go back a year, total up the time. Repeat for the last 29 years. Keep track of the results and display the peak number. "Conceptually" easy!
These are the things I expect of a free app.
None of mine are that exciting. Almost all of them are "Flight includes a property indicating time with a particular distance of cross-country flight, but this doesn't match the total cross-country time logged on the flight." Because I use the "cross country less than 50 nm" property for short cross-country flights and then don't actually put in the cross-country time, so my cross-country time total all qualifies toward a certificate or rating. I'll probably go through and change those just to make the logbook entry check feature come out clean.MyFlightBook has a useful feature that will do a quality control check of your logbook entries.
I found this entry showing I got the Bonanza A36 into the transonic speed range
I fixed the entry. But seeing it did bring some humor to the logbook task I was working on.
Finally got around to doing this. Its coded up, hopefully should be live in the next few days.Feature request: Have the ability to cross-fill from total landings like you can cross-fill from total time. I would like to be able to fill the full-stop fields and glider tows. Please & thank you. This would save me approximately 4.5 seconds per week.