Skip to content

A package for interacting with a Revolve Analyze database using Python.

Notifications You must be signed in to change notification settings

RevolveNTNU/PyRevolveAnalyzeDatabase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Revolve Analyze Database for Python

This is a Python package that can be used to read testing data from your local Revolve Analyze SQLite database.

Installation guide

  1. Navigate to the release section of this repository
  2. Download the wheel package from the latest release
  3. Install the wheel package using pip (Package is not on PyPi yet)

Getting started

Setting up a database connection

dbFile = "C:\PATH\TO\REVOLVE_ANALYZE\DATABASE\local_database.db"
db = RevolveAnalyzeDatabase(dbFile)

Load some data

Dataseries loaded from the database are returned as pandas (https://pandas.pydata.org/) Dataframes.

logname = "FSG19 - Endurance"
channelname = "vcu.INS.vx"

dataseries = db.get_dataseries(logname, channelname)

laps = db.get_laps_for_log(logname)

dataseries_lap_1 = db.get_dataseries(logname, channelname, laps[0])

About

A package for interacting with a Revolve Analyze database using Python.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages