This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
import math | |
import argparse | |
import numpy as np | |
from sklearn.linear_model import LinearRegression | |
from dronekit import connect, VehicleMode, LocationGlobal | |
# ----------------------------- Program Arguments ---------------------------- # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Creating tables and alter references | |
CREATE TABLE players ( | |
pid VARCHAR(10) PRIMARY KEY, | |
first_name VARCHAR(50), | |
last_name VARCHAR(50), | |
nationality VARCHAR(50), | |
dob DATE | |
); |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Creating tables and alter references | |
CREATE TABLE players ( | |
pid VARCHAR(10) PRIMARY KEY, | |
first_name VARCHAR(50), | |
last_name VARCHAR(50), | |
nationality VARCHAR(50), | |
dob DATE | |
); |