-
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
Add KeepIn and KeepOut geofence boxes #115
base: master
Are you sure you want to change the base?
Conversation
when u do just a small OCD thing of mine |
bae005c
to
776fe53
Compare
Can we link #113 to this? This PR closes this issue |
Update, this PR will not close #113, that's a different issue |
8fcb835
to
25972b5
Compare
## Why is this being changed? This is being changed because of Northrop's requirement of having a KeepIn and KeepOut box for all vehicles. The KeepIn area is an area that all vehicles must stay inside of, and will be about the size of the mission field/runway. The KeepOut area is an area that all vehicles must stay outside of, and will be the location of all student/Northrop observers. ## What was changed to address this problem? In order to address the problem, two geofence buttons were created inside of the missionWindow UI tah tallows the GCS operator to dynamically create the two boxes individually, separating them by color. ## How was this change tested? This change was tested with npm test.
|
||
export type Message = StartMessage | AddMissionMessage | PauseMessage | ResumeMessage | StopMessage | ||
| GeofenceMessage | ConnectionAckMessage | UpdateMessage | POIMessage | CompleteMessage | ||
| ConnectMessage | AcknowledgementMessage | BadMessage; | ||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
my bad, lets put the extra line back between line 292 and 293, and remove the unnecessary line in 289
/** | ||
* geofence.keepOut and geofence.keepIn are defined as an array of tuples( [[number, number]] ). | ||
* Each tuple consists of [ [latitude, longitude] ]. | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets change the description to something like this Array of tuples that represent [latitude, longitude]
, and put
the description on top of keepOut and keepIn. message me if you need more clarification
Why is this being changed?
This is being changed because of Northrop's requirement of having a
KeepIn and KeepOut box for all vehicles. The KeepIn area is an area that
all vehicles must stay inside of, and will be about the size of the
mission field/runway. The KeepOut area is an area that all vehicles must
stay outside of, and will be the location of all student/Northrop
observers.
What was changed to address this problem?
In order to address the problem, two geofence buttons were created
inside of the missionWindow UI tah tallows the GCS operator to
dynamically create the two boxes individually, separating them by
color.
How was this change tested?
This change was tested with npm test.