You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
We want a generic data review program that will help automate data from any flight attempts and validate any results from PySim/SILSIM/HILSIM.
Details
The best way to implement this is probably via a class-based system. Let's define a check as one criterion that the incoming data needs to meet. This could be that it's always increasing or staying at a certain value, etc. We can implement this as a class that takes in data and then sets a "passed" field to determine whether the data meets the criterion. By assigning multiple of these checks to a piece of data, we make a more comprehensive review that automates our data review and makes it easier to work with.
Make a new repo
Running data through these checks to determine the validity of the data
Increasing check, determining if a certain value is increasing at all times
Tolerance check, value must lie within a certain value
The text was updated successfully, but these errors were encountered:
Description
We want a generic data review program that will help automate data from any flight attempts and validate any results from PySim/SILSIM/HILSIM.
Details
The best way to implement this is probably via a class-based system. Let's define a check as one criterion that the incoming data needs to meet. This could be that it's always increasing or staying at a certain value, etc. We can implement this as a class that takes in data and then sets a "passed" field to determine whether the data meets the criterion. By assigning multiple of these checks to a piece of data, we make a more comprehensive review that automates our data review and makes it easier to work with.
The text was updated successfully, but these errors were encountered: