| Package | Description |
|---|---|
| stella.sensor |
| Modifier and Type | Method and Description |
|---|---|
static Meteorology |
Meteorology.parseLine(Meteorology last,
String line) |
| Modifier and Type | Method and Description |
|---|---|
static List<Meteorology> |
Meteorology.db(List<String> names,
List<Double> badtoggles,
List<Double> goodtoggles,
List<Long> retards,
Date from,
Date to)
Parses a db entry and tries to reconstruct the filters retard time.
|
static List<Meteorology> |
Meteorology.filter(List<Meteorology> data,
int sensor,
double trigg,
boolean below) |
static List<Meteorology> |
Meteorology.parse(List<String> ascii,
Date from,
Date to)
Parses a list of lines into a list of meterology object, file should
be in correct time order to assure proper assignment of invalid readings
|
| Modifier and Type | Method and Description |
|---|---|
int |
Meteorology.compareTo(Meteorology after)
For sorting: sort to date.
|
static Meteorology |
Meteorology.parseLine(Meteorology last,
String line) |
| Modifier and Type | Method and Description |
|---|---|
static int |
Meteorology.count(List<Meteorology> data,
int month,
int hour)
Count the data points with calendar
|
static List<Meteorology> |
Meteorology.filter(List<Meteorology> data,
int sensor,
double trigg,
boolean below) |
static int[] |
Meteorology.getBadTriggers(List<Meteorology> data)
Count the instances, when the sensor on a specific index was the first
to report bad.
|
static int |
Meteorology.getBadWeather(List<Meteorology> data,
int month,
int hour)
Count the data points with good weather.
|
static int |
Meteorology.getSensorBelow(List<Meteorology> data,
int month,
int hour,
int i0,
double below,
Boolean bad)
Count data points where the sensor at the given index is lower than
the stated value and the weather is bad like the Boolean
|