Skip to content

StazioneMeteoCocito/JCocitoWeather

Repository files navigation

JCocitoWeather

it.edu.liceococito.cocitoWeatherStation

A Java library for the weather station, allows for easy data querying, and updating.

Javadocs

Example:

public class Main implements StationEventListener {
    public static void main(String[] args) throws NotADirectoryException, IOException, GitAPIException, ParseException {
        Main m = new Main();
    }
    public Main() throws GitAPIException, NotADirectoryException, IOException, ParseException {
        Station station = new Station();
        station.udpate();
        ArchiveQuery aq = new ArchiveQuery();
        TimePeriod tp = new TimePeriod();
        aq.getAllowedDataTypes().add(DataType.TEMPERATURE);
        aq.getTimePeriods().add(tp);
        aq.setPageSize(10);
        ArchiveQueryResult aqs = station.query(aq);
        PageList pgl = aqs.getPageList();
        for (Page p : pgl) {
            for (Value v : p) {
                System.out.println(v.getValue() + " at " + v.getCreated());
            }
        }
        System.out.println(station.getHardwareReport());
        System.out.println("Latest temp: " + station.getLastMeasurements().getTemperature().getValue());


        StatisticalReporter str = new StatisticalReporter(aqs);
        StatisticalReportDataPamphlet pa = str.getReportPamphletFromType(DataType.TEMPERATURE);
        double max = pa.getMax();
        double min = pa.getMin();

        System.out.println("Max : "+max+" °C, Min: "+min+" °C");
        StationWatcher stationWatcher = station.getStationWatcher(this);
        stationWatcher.startWatching();

        System.out.println("Started station watcher");
    }
    @Override
    public void receiveStationLatestMeasurements(LatestMeasurements latestMeasurements) {
        System.out.println("New Humidity  "+latestMeasurements.getHumidity().getValue());
    }

    @Override
    public void receiveStationLatestHardwareReport(String latestHardwareReport) {
        System.out.println("New hardware report is "+latestHardwareReport.length()+" char long");
    }
}

See it in Main.java

About

A java library for the weather station

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages