-
Notifications
You must be signed in to change notification settings - Fork 5
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
New State
fields for airborne platforms
#1097
Comments
These new fields have been proposed:
|
There are a lot of fields. While some can be calculated from others (rates...), I think the spirit of analysts is that whatever field is received, it should be stored in that format. So, even though (I guess that) phi_dot and phi_dot_dot can be calculated, if the sensor just returns phi_dot_dot, then that measurement should be stored unchanged. I have a "little" discomfort about the number of next fields to be added. This is partially down to the "legibility" of the database schema diagram, but also the potential impact on database size - we have lots and lots of
|
I think I would recommend option 2, although either would work. This option is more in the spirit of standard relational database design, and would make it far easier to use with other tools - rather than having to decode a chunk of JSON in a database field (which, although Postgres does have support for native JSON fields, does make it harder to query etc). |
Yes, we'll go with option-2. Here are the units, for the Python API:
|
Table name: State_Detailed The table will store 3 states for each of 9 types of measurement. The three states will be "normal", then "_dot" and "_dot_dot". The units are as in the previous comment, but the units won't be in SQL, just in our custom SQLAlchemy object broker classes. 27 fields:
|
Analysis of airborne tracks traditionally requires the full 6 degrees of freedom.
Also, analysis of radar data can rely on measurements of pitch & roll - since they affect where the radar is "pointing".
Analysts are going to consider what additional fields they require, so we can create them via an Alembic Transition, and so that the fields are available via SQLAlchemy - when the analysts (or industry) eventually create the parsers for this data.
The text was updated successfully, but these errors were encountered: