Skip to content
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

Next release 🥳 #16

Merged
merged 63 commits into from
Oct 9, 2020
Merged
Changes from 1 commit
Commits
Show all changes
63 commits
Select commit Hold shift + click to select a range
9d41a0f
First proof of concept passing tests using stateless!
corstian Aug 2, 2020
306aa41
Add the spatial map, and resolve old project references
corstian Aug 3, 2020
934d959
Fix a test, and replace the nearby aircraft retrieval mechanism
corstian Aug 4, 2020
b996d88
Remove context on expiration
corstian Aug 4, 2020
cee5065
Add a LaunchMethod property
corstian Aug 4, 2020
0205a23
Some scaffolding to start analysing the launch methods
corstian Aug 4, 2020
3742d4c
Add a class to calculate a ZScore for realtime peak detection
corstian Aug 4, 2020
42f80aa
Remove async enqueue methods
corstian Aug 4, 2020
b8d9862
Add proof of concept for winch launch detection
corstian Aug 4, 2020
8533c8c
Remove extreme outliers by discarding potentially duplicate data we'v…
corstian Aug 4, 2020
4250659
Remove extreme outliers by enforcing a minimum time constraint
corstian Aug 4, 2020
eeab1ac
Remove last seen field for it was not used by the library
corstian Aug 4, 2020
a344d0b
Correct the dupe removal logic so that the end times are correctly re…
corstian Aug 4, 2020
072a2c3
Early proof of concept for launch method recognition
corstian Aug 5, 2020
1ac5376
Add FlightContextOptions to configure more advanced use-cases
corstian Aug 5, 2020
3158b86
Remove states which are no longer used
corstian Aug 5, 2020
cfabe18
Group geo methods together again
corstian Aug 5, 2020
805f4ed
Move NormalizeData method together with the geo helpers
corstian Aug 5, 2020
8f13609
Fix build errors
corstian Aug 5, 2020
4466602
Refactor states into individual files
corstian Aug 5, 2020
a2490f6
Add a distance check for "winch" launches
corstian Aug 5, 2020
804853f
Change the way a context is instantiated
corstian Aug 5, 2020
cd7eeec
Wire the launch completed event handlers in the factory
corstian Aug 5, 2020
6b8d054
Fix build error
corstian Aug 5, 2020
85a1854
Fix failing tests due to a null reference exception
corstian Aug 5, 2020
66cfc94
Add interpolation logic
corstian Aug 5, 2020
d1e7da8
Change return type of the AircraftAccessor
corstian Aug 5, 2020
5998e2f
Determine whether an aircraft is being towed or is towing
corstian Aug 5, 2020
91a54e3
Reduce the complexity of the state machine by using internal triggers
corstian Aug 5, 2020
361e62c
Proof of concept for dealing with different launch methods
corstian Aug 5, 2020
29b260a
Add LaunchFinished property
corstian Aug 6, 2020
15e0d7a
Playing around with the structure with which to track launch status
corstian Aug 6, 2020
42825d6
Fix build errors
corstian Aug 6, 2020
87e2181
Add the first tests which validate the model output
corstian Aug 6, 2020
66af3f9
Fix a test situation
corstian Aug 6, 2020
1e292a8
Actually throw errors in case an event handler fails
corstian Aug 6, 2020
24631f0
Fix tests once again (:
corstian Aug 6, 2020
e9ebfae
Resolve a failing test
corstian Sep 26, 2020
316f296
Add processing tool
corstian Sep 26, 2020
f0059f2
performane improvements
corstian Sep 26, 2020
a3c256e
Add proper test case
corstian Sep 27, 2020
d20a2e9
Enqueue a collection point for point to maintain geospatial relevance…
corstian Sep 29, 2020
5fc2a34
Introduce experimental new state machine structure
corstian Sep 29, 2020
48c5fcb
Switcheroo
corstian Sep 29, 2020
a756237
Proof of concept for the new state machine is somewhat working.
corstian Sep 29, 2020
56e53f7
Working proof of concept for the renewed flight analysis tool
corstian Sep 29, 2020
c28e5c3
Properly deal with the NearbyAircraftAccessor.
corstian Sep 30, 2020
8da5fb1
Refactor NearbyAircraftAccessor as Flight Context only option
corstian Sep 30, 2020
e454a41
First proof of concept for tow recognition (A little over 50% accurate)
corstian Sep 30, 2020
7bf725f
Refactor the spatial map into its own project.
corstian Oct 2, 2020
8acc016
Get 95% reliability for aerotows when visible
corstian Oct 2, 2020
1891b4e
We're not going through with the randomness plan anymore.
corstian Oct 2, 2020
c7c26c4
Way better flight recognition, as well as support for aborted departures
corstian Oct 3, 2020
bbf66b9
Add a time based limit for departure data
corstian Oct 6, 2020
adfdcdd
Ensure any hypothesis is cleared before switching back to flight trac…
corstian Oct 6, 2020
bb173ea
Update FlightContext tests to use the new version
corstian Oct 6, 2020
263106e
A preliminary departure heading is added. Tests pass again.
corstian Oct 6, 2020
b062b40
Made some more tests pass with the experimental version
corstian Oct 7, 2020
d5383a4
Definitely move the experimental version to the base
corstian Oct 7, 2020
5422c78
Remove the arrival theory cancellationtokensource
corstian Oct 8, 2020
b9efbcd
Remove package dependency and simplify runway object
corstian Oct 9, 2020
964d9d7
Add runway queries
corstian Oct 9, 2020
f31afc6
Bump version number
corstian Oct 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ensure any hypothesis is cleared before switching back to flight trac…
…king mode.
  • Loading branch information
corstian committed Oct 6, 2020
commit adfdcdddfaa87bfb7381d343b300a7386d42c02f
3 changes: 3 additions & 0 deletions Skyhop.FlightAnalysis/Experimental/States/Arriving.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ internal static void Arriving(this FlightContext context)

if (context.CurrentPosition.Altitude > Constants.ArrivalHeight)
{
context.Flight.EndTime = null;
context.Flight.ArrivalInfoFound = null;
context.Flight.ArrivalHeading = 0;
context.StateMachine.Fire(FlightContext.Trigger.LandingAborted);
return;
}
Expand Down