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

Add Functions and Table Structure to Allow Ground Positions #42

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

Commits on Aug 10, 2022

  1. Add Functions and Table Structure to Allow Ground Positions

    Initial commit for enabling ground positions. Adds columns to positions
    table and ground_position message handler in db-updater, and then add
    ground_positions endpoint on fids_backend and also attempt to add ground
    position path to maps endpoint.
    
    BCK_6624
    Jacob Pan committed Aug 10, 2022
    Configuration menu
    Copy the full SHA
    95fc3b6 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. Update db-updater/main.py

    Remove comments
    
    Co-authored-by: Chris Roberts <[email protected]>
    jacob-y-pan and NasaGeek authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    b3fc07b View commit details
    Browse the repository at this point in the history
  2. Update fids/app.py

    Remove testing
    
    Co-authored-by: Chris Roberts <[email protected]>
    jacob-y-pan and NasaGeek authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    f5a50b6 View commit details
    Browse the repository at this point in the history
  3. Update fids/app.py

    Add comment clarification
    
    Co-authored-by: Chris Roberts <[email protected]>
    jacob-y-pan and NasaGeek authored Aug 11, 2022
    Configuration menu
    Copy the full SHA
    a0c97da View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2022

  1. Add Condition for Ground Positions and Add Earliest Positions

    Previous check for if it was a ground_positions data point just checked
    if ground_air was null, now using if its value is "G". Also added
    functionality to get top 4 positions and return the top 2 for bearing.
    
    BCK_6624
    Jacob Pan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    b2cc708 View commit details
    Browse the repository at this point in the history
  2. Another Approach with Bearing and Fixing

    When trying first 4 coordinates without distingushing them between
    ground_positions and positions, bearing was incorrect, so just took the
    latest pair between the first two of the two types. Also fixed
    coordinate fetching so map has mix but also show plane having both
    positions and ground_positions distinguished.
    
    BCK_6624
    Jacob Pan committed Aug 12, 2022
    Configuration menu
    Copy the full SHA
    5995fa6 View commit details
    Browse the repository at this point in the history