-
Notifications
You must be signed in to change notification settings - Fork 2
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
Just-in-time flight plan generation or modification #5
Comments
I'm not sure how we might approach this! To be clear, I'm not suggesting we do it now. But I think it would be worth a conversation to figure out what our potential options are if we need to implement just-in-time flight plan modification. |
Our commercial competition (Pix4D Capture, DroneDeploy, Dronelink, Litchi, and friends) all generate flight plans dynamically on mobile. Which doesn't mean we must do the same, but it's likely going to be an expectation for a lot of users. |
Very nice write up - looking forward to solving this challenge 😁 We should definitely research / evaluate our possible options! Based on what you suggested, a few off the top of my head:
Out of all the options I listed there, long term we should consider the Flutter app, ideally using Flet to reuse our existing Python code. (I'm sure there are other options too!) |
Via API seems like the obvious starting point. At this stage, I'm fine with requiring testers to have mobile data. Postgres in browser? Damn, that sounds interesting! I do like PostGIS a lot... |
Just-in-time flight plan modification
It might be much safer to generate (or modify) the flight plans only after the drone operator has arrived at their intended takeoff/landing site (the drone defines this as the "home" location).
This is difficult for a few reasons.
Nevertheless, there are a few reasons why we might need to consider it, mostly related to a user needing to modify things based on site-specific factors or risks. For example:
Home point setting
At the end of a waypoint mission, the Mini 4 Pro returns to a position 30 m above its home point before descending vertically to land. If, for example, the mission is at 120 m, the drone descends smoothly from 120 m to 30 m on the way from the final waypoint back to the home position.
This can pose a problem; if there's an obstacle higher than 30 m such as a TV antenna or power line between the final mission waypoint and the home position, the drone could crash into that obstacle (a mountain or building might be a problem too, but less likely to cause a crash due to the Mini 4 Pro's obstacle avoidance, but that system often doesn't detect wires and antennas).
Our workaround: we create an extra waypoint at the beginning and end of the mission, just above the mission centroid. As long as the operator doesn't take off too far from the centroid of the area being flown, the drone will come down in a near-vertical path. However, if for some reason the operator needs to take off and land far from the centroid (which we've already seen a few times), the problem actually becomes worse (because now the extra waypoints cause extra flight distance/time as well as risk during the gradual descent).
The ideal would be to either:
Flightline angle setting for slope or wind
At the moment we're only creating east-west flight lines. This actually isn't necessarily totally bad; it does make for very consistent data when processing multiple flights. I actually think it might be a decent default. However, there are a number of situations in which a different flightline angle would make sense, mostly related to slope and wind.
The drone uses less energy when moving along a level path than gaining & losing altitude. If there's a slope, the most efficient flight path will be along the contour lines of the slope. This is something that we could build in from the DEM, so it doesn't require just-in-time flight plan tweaking.
However, something similar applies to wind; it's generally better to fly perpendicular to the wind than to fly upwind and downwind (both for energy efficiency and for reducing vibration as the drone fights the wind). There's no reliable way to know the wind direction in advance (theoretically we could look up the weather in a given area and take wind direction into account, but that would assume we know more or less exactly when the flight will take place). Again, this is the kind of thing best done when the user is ready to fly.
Unexpected obstacles
The global DEM will not take into account all buildings or obstacles. There are definitely circumstances in which the flight plan would be safer if modified—possibly changing the flightline directions or even removing areas—just before takeoff.
Shortened flight times
We will be calibrating our flight plans to get as much area as safely possible with a single battery. However, people might be experiencing shorter flight times if:
In this case, we probably want people to be able to split a single flight into multiple chunks.
The text was updated successfully, but these errors were encountered: