Files
we_collect/eval_records_settings.py
T
jens 0873229206 [eval_frecords]
- added charge power
2024-10-31 09:28:57 +01:00

37 lines
1003 B
Python

# Settings for eval_record
import time
from datetime import timedelta
BASE = "/media/jens/cifs/jens@moon/projects/we_collect/results"
VIN = 'WVWZZZE1ZMP010760'
USER = 'alex'
# Default show data of today
sel_years = (2024, time.gmtime().tm_year)
sel_month = (10, time.gmtime().tm_mon)
sel_days = (31, time.gmtime().tm_mday)
t_interval_s = 5 * 60
eps = {
"odo":
{
"values": "data/measurements/odometerStatus/value/odometer",
"timestamps": "data/measurements/odometerStatus/value/carCapturedTimestamp"
},
"soc":
{
"values": "data/measurements/fuelLevelStatus/value/currentSOC_pct",
"timestamps": "data/measurements/fuelLevelStatus/value/carCapturedTimestamp"
},
"chgpwr":
{
"values": "data/charging/chargingStatus/value/chargePower_kW",
"timestamps": "data/charging/chargingStatus/value/carCapturedTimestamp"
},
"range":
{
"values": "data/fuelStatus/rangeStatus/value/totalRange_km",
"timestamps": "data/fuelStatus/rangeStatus/value/carCapturedTimestamp"
}
}