This repository supports Module 01 of the Daedalus Aerospace Flight Test Data Analytics course.
Please use the GitHub Issues page to provide feedback.
Code is available here at https://github.com/Daedalus-Aerospace/Flight-Test-Data-Analytics-Module-01
Click on the <> Code ▼
button for options
- Download ZIP will provide you a local copy.
- Save to a convenient location, unzip the file, and run the code from the
Flight-Test-Data-Analytics-Module-01
folder.
- GitHub Desktop is a local application that provides a graphical user interface for using
git
andGitHub
. - Open with GitHub Desktop helps automate the local repository cloning process.
- For those familiar with
git
andGitHub
and working with git repositories, the repository may be cloned using HTTPS, SSH, or the GitHub CLI (Command Line Interface)
This course assumes you have installed the Anaconda Distribution, available at https://www.anaconda.com/products/distribution#Downloads
Spyder is an integrated development environment (IDE) that comes bundled with the Anaconda Distribution. There is no requirement that Spyder be used to run and explore this code, but Spyder is used during course development and in the course videos.
The conda environment used for the module is available as environment.yml
To import the environment and open the Spyder IDE, you have two ways of doing so:
- Anaconda Navigator
- Open Anaconda Navigator
- From the left sidebar menu select "Environments"
- At the bottom of the window select "Import"
- From "Local Drive" browse to the folder Flight-Test-Data-Analytics-Module-01 and select
environment.yml
- Name the environment "ftda_m01"
- Once installation is complete, select "ftda_m01" from the available environments
- Click the play button, and select "Open in Terminal"
- In the terminal, type
spyder
and hit Enter
- Anaconda Terminal/PowerShell
- Open Anaconda Terminal or Anaconda PowerShell
- In the terminal, navigate to the folder Flight-Test-Data-Analytics-Module-01
- Type
conda env create -f environment.yml
and hit Enter - Agree to changes
- Once installation is complete, type
conda activate ftda_m01
- Type
spyder
and hit Enter