Hello,

I agree with you, it could be a good idea to offer to enable/disable this feature in the conf file. I let weewx's github senior members to decide to agree and to add it or not in conf file.

Here is a proposed patch to check if the weatherstation transmits wrong live record data, i have republished it because i have not find the previous patch.

https://github.com/weewx/weewx/commit/d237c7468dd15b2fd385a9ce8c27341a70031998

replaced in restx.py
self.process_record(_record, dbmanager)

by
if _record['outTemp']: self.process_record(_record, dbmanager) except KeyError: _time_str = timestamp_to_string(_record['dateTime']) syslog.syslog(syslog.LOG_INFO, "restx: %s: Skipped record %s because of outTemp error." % (self.protocol_name, _time_str)) pass

regards


------ Message d'origine ------
De: "Chris Manton" <cman...@gmail.com>
À: "weewx-user" <weewx-user@googlegroups.com>
Cc : andrew.s.r.mil...@gmail.com; jto...@gmail.com
Envoyé : 06/08/2017 19:13:37
Objet : Re: Re[4]: [weewx-user] WMR 200 and weewx 3.1 missing values

I cannot view the patch, but sounds like you have some familiarity with this weatherstation.

I suggest you provide a well-named configuration value for the configuration file to enable/disable this feature of restricting out-of-bounds values, such that the end user may enable or disable appropriately.

Chris
--


On Sunday, August 6, 2017 at 6:58:22 AM UTC-7, Joseph Tomeh wrote:
Hello,

I am talking about records captured in live. I agree there is no wrong datas recorded in the WMR200 datalogger and retrived from WMR200's archive.

I have this station since 7 years ago and i know very well its limitations (bad wind speed measure, wrong data, ...).

I had already wrote a C# software for managing this station because of Oregon software given with the station which had retrieved bad data too. I have migrated to weewx because I wanted to connect it permanently using a Raspberrypi. With weewx i have now the same troubleshootings i had met when I started to write my first C# driver for WMR200.

My opinion is we need to consider data from WMR200 not reliable and check them. This why I proposed to check "outTemp" value. if i don't make this check in restx.py, I have splitted graphs (non continuous curve) and errors message from wunderground telling my station is not reporting data.

My proposed fix (please see today's github proposed patch) for restx is working well and it has solved the issue reported before.

Regards


------ Message d'origine ------
De: "Andrew Milner" <andrew.s...@gmail.com>
À: "weewx-user" <weewx...@googlegroups.com>
Cc : jto...@gmail.com
Envoyé : 06/08/2017 12:49:08
Objet : Re: Re[2]: [weewx-user] WMR 200 and weewx 3.1 missing values

Are you talking about Loop data or REC data?? Since the archive is normally over 300 seconds, and contains the average reading for the interval, it is unlikely that there will be any missing or wrong data in the archive (which is also used for the graphs). The issue only arises when the archive interval is too short to contain at least one reading for all sensors, or if loop data is being output.

On Sunday, 6 August 2017 11:35:37 UTC+3, Joseph Tomeh wrote:
Hello,

Thanks a lot for your quick answer and sorry for my late response, i was very busy and not at home since last time.

i studied the weewx python code. I'dont know very well this programming language and I'am not able to write a weewx service. But I think, we can solve easyly this issue without modifying the driver code and writing a weewx service.

First of all, i proposed a patch (please see my today's github contribution). This patch avoid to send bad records for instance for Wunderground et produce splittered graphs. I hope i will be accepted, i have tested it, it is working well.

In second time, i think, it could be possible to do the same test "if record['outTemp']" in the 2 functions "_addSingleRecord" in manager.py. if we prevent from adding bad records into the archive and daily tables the database will be still consistent

what do you think about these proposals ?

Best regards

------ Message d'origine ------
De: "Thomas Keffer" <tke...@gmail.com>
À: "weewx-user" <weewx...@googlegroups.com>
Envoyé : 21/07/2017 16:32:27
Objet : Re: [weewx-user] WMR 200 and weewx 3.1 missing values

In weewx, if a driver detects a bad value, it should replace it with a null. I'm not sure whether the existing driver does this (I did not write it).

One of the reasons weewx is able to support so many different types of hardware is that it has a very simple, and very consistent, data model <http://weewx.com/docs/customizing.htm#General_guidelines>. One of the guidelines of that model is, "The driver should emit only data it receives from the hardware (no "filling in the gaps")." If you want to do that, that would be the job of a weewx service.

However, we looked into caching values about a year ago and decided not to do it for reasons given in the Issue thread <https://github.com/weewx/weewx/issues/31>. What you're proposing is a little simpler, but could run into some of the same problems.

-tk



On Fri, Jul 21, 2017 at 1:20 AM, <jto...@gmail.com> wrote:
Hello,

I have read this topic because i have the same trouble too. I used the latest version of weewx (3.7.1) and the latest driver version for wmr200 (3.3.2).

I have a WMR200 station since 2010.
I wrote my own driver with c#. But I decided this year to plug my station to a Raspberrypi and my c# app not working. Then I decided to use Weewx.

The WMR200 is well known to produce sometime bad values (NA ou null values) sometime the pressure, sometime temperature, ...

In my c# driver, I used the following strategy, if i receive a null record for a field, i replace it with the previous recorded value (only the erreneous field, not the whole record)

I think that could be done too in weewx. An other strategy could be done in StdQC an could allow us to reject a whole record if some values are errouneous eg NULL ou NA;

Do you think that could be done in next version of the WMR200's driver. I don't know Python, I can't help to change the python WMR200 driver

Congratulation for this very good job.
Best regards


Le samedi 28 mars 2015 02:21:26 UTC+1, Markus Roth a écrit :
Works not i have the first N/A by the UV sensor.

Other thinks to test ?

Am Samstag, 28. März 2015 01:11:24 UTC+1 schrieb Thomas Keffer:
My apologies. I am not very familiar with the WMR200 driver. It appears that it gets the archive interval from the [WMR200] section of weewx.conf. Try this:

[WMR200]
    # This section is for the Oregon Scientific WMR200

# The station model, e.g., WMR200, WMR200A, Radio Shack W200
    model = WMR200

    archive_interval = 300

    # The driver to use:
    driver = weewx.drivers.wmr200

-tk

On Fri, Mar 27, 2015 at 4:44 PM, Markus Roth <webm...@rothlive.de> wrote:
i have set it to 300 but the webside update comes every 60 sec.
Is that ok ?

Am Freitag, 27. März 2015 22:17:53 UTC+1 schrieb Thomas Keffer:
Try changing the record_generation option to 'software':

[StdArchive]
    ...
    archive_interval = 300
    ...
    record_generation = software

-tk


On Fri, Mar 27, 2015 at 2:03 PM, Markus Roth <webm...@rothlive.de> wrote:
interesting at the confic stand :

[StdArchive]
    # This section is for configuring the archive service.

# If your station hardware supports data logging then the archive interval
    # will be downloaded from the station.
    # Otherwise, you must specify it below (in seconds):
    archive_interval = 300

but i have not cange anything on it.
Or you mean any other ?


Am Freitag, 27. März 2015 21:27:39 UTC+1 schrieb Thomas Keffer:
Thank you, Markus

The problem is that you have a one minute archive interval. This is very short. There will be occasions where you temperature sensor will not emit a value within such a short time, and so you will get a null value for outTemp.

Either live with the problem, or increase your archive interval to 5 minutes.

-tk

On Fri, Mar 27, 2015 at 1:20 PM, Markus Roth <webm...@rothlive.de> wrote:




484540.0, 'windDir': 283.5281664924813, 'outTemp': 42.8, 'windSpeed': 4.25017895328, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 4.25017895328, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:29:19 CET (1427484559) {'windchill': 39.0, 'dateTime': 1427484559, 'windDir': 315.0, 'windSpeed': 4.25017895328, 'windGust': 5.816034357120001, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:29:29 CET (1427484569) {'dateTime': 1427484569, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:29:32 CET (1427484572) {'windchill': 39.0, 'dateTime': 1427484572, 'windDir': 315.0, 'windSpeed': 4.25017895328, 'windGust': 5.816034357120001, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:29:32 CET (1427484572) {'dewpoint': 34.058845824728756, 'outHumidity': 71, 'heatindex': 42.8, 'dateTime': 1427484572, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:29:34 CET (1427484574) {'windchill': 41.0, 'dateTime': 1427484574, 'windDir': 270.0, 'windSpeed': 4.25017895328, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:29:38 CET (1427484578) {'UV': 0, 'rainRate': 0, 'usUnits': 1, 'dateTime': 1427484578} LOOP: 2015-03-27 20:29:39 CET (1427484579) {'dateTime': 1427484579, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:29:40 CET (1427484580) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484580, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:29:48 CET (1427484588) {'windchill': None, 'dateTime': 1427484588, 'windDir': 315.0, 'windSpeed': 4.25017895328, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:29:49 CET (1427484589) {'dateTime': 1427484589, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:29:59 CET (1427484599) {'dateTime': 1427484599, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:29:59 CET (1427484599) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484599, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:30:02 CET (1427484602) {'windchill': None, 'dateTime': 1427484602, 'windDir': 247.5, 'windSpeed': 3.3554044368000002, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:30:09 CET (1427484609) {'dateTime': 1427484609, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:30:12 CET (1427484612) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484612, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:30:16 CET (1427484616) {'windchill': 41.0, 'dateTime': 1427484616, 'windDir': 270.0, 'windSpeed': 3.3554044368000002, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} REC: 2015-03-27 20:30:00 CET (1427484600) {'outTempBatteryStatus': 1.0, 'outHumidity': 71.0, 'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'rainFault': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'heatindex': 42.8, 'inDewpoint': 51.56718950185839, 'inTemp': 74.30000000000001, 'barometer': 30.124040165386887, 'windchill': 39.5, 'dewpoint': 34.058845824728756, 'interval': 1, 'pressure': 29.849602216243525, 'windGustDir': 315.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'UV': 0.0, 'dateTime': 1427484600.0, 'windDir': 301.75776410929177, 'outTemp': 42.8, 'windSpeed': 4.25017895328, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 5.816034357120001, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:30:18 CET (1427484618) {'dateTime': 1427484618, 'inHumidity': 45, 'inDewpoint': 51.567189501858394, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.30000000000001} LOOP: 2015-03-27 20:30:24 CET (1427484624) {'windchill': 41.0, 'dateTime': 1427484624, 'windDir': 270.0, 'windSpeed': 3.3554044368000002, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:30:24 CET (1427484624) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484624, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:30:28 CET (1427484628) {'dateTime': 1427484628, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:30:29 CET (1427484629) {'windchill': 40.0, 'dateTime': 1427484629, 'windDir': 292.5, 'windSpeed': 3.3554044368000002, 'windGust': 4.25017895328, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:30:38 CET (1427484638) {'dateTime': 1427484638, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:30:39 CET (1427484639) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484639, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:30:43 CET (1427484643) {'windchill': None, 'dateTime': 1427484643, 'windDir': 292.5, 'windSpeed': 3.3554044368000002, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:30:48 CET (1427484648) {'dateTime': 1427484648, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:30:57 CET (1427484657) {'windchill': 41.0, 'dateTime': 1427484657, 'windDir': 270.0, 'windSpeed': 3.3554044368000002, 'windGust': 3.5790980659200007, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 270.0} LOOP: 2015-03-27 20:30:58 CET (1427484658) {'dateTime': 1427484658, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:30:59 CET (1427484659) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484659, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:30:59 CET (1427484659) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484659, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:31:08 CET (1427484668) {'dateTime': 1427484668, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:11 CET (1427484671) {'windchill': 39.0, 'dateTime': 1427484671, 'windDir': 292.5, 'windSpeed': 3.5790980659200007, 'windGust': 4.92125984064, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:31:17 CET (1427484677) {'windchill': 39.0, 'dateTime': 1427484677, 'windDir': 292.5, 'windSpeed': 3.5790980659200007, 'windGust': 4.92125984064, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} REC: 2015-03-27 20:31:00 CET (1427484660) {'outTempBatteryStatus': 1.0, 'outHumidity': 72.0, 'dayRain': 0.0, 'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'rainFault': 0.0, 'totalRain': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'heatindex': 42.8, 'inDewpoint': 51.45851124247631, 'hourRain': 0.0, 'inTemp': 74.18, 'barometer': 30.124040165386887, 'windchill': 40.75, 'dewpoint': 34.40897921794182, 'rain': 0.0, 'pressure': 29.849612299653977, 'windGustDir': 292.5, 'totalRainLast': 0.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'interval': 1, 'dateTime': 1427484660.0, 'windDir': 273.7933939972405, 'outTemp': 42.8, 'windSpeed': 3.3554044368000002, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 4.25017895328, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:31:18 CET (1427484678) {'dateTime': 1427484678, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:25 CET (1427484685) {'windchill': None, 'dateTime': 1427484685, 'windDir': 292.5, 'windSpeed': 3.5790980659200007, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:31:28 CET (1427484688) {'dateTime': 1427484688, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:38 CET (1427484698) {'dateTime': 1427484698, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:39 CET (1427484699) {'windchill': None, 'dateTime': 1427484699, 'windDir': 247.5, 'windSpeed': 3.5790980659200007, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:31:39 CET (1427484699) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484699, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:31:45 CET (1427484705) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484705, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:31:48 CET (1427484708) {'dateTime': 1427484708, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:53 CET (1427484713) {'windchill': 40.0, 'dateTime': 1427484713, 'windDir': 270.0, 'windSpeed': 3.5790980659200007, 'windGust': 4.697566211520001, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 270.0} LOOP: 2015-03-27 20:31:58 CET (1427484718) {'dateTime': 1427484718, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:31:58 CET (1427484718) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484718, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:32:03 CET (1427484723) {'UV': 0, 'rainRate': 0, 'usUnits': 1, 'dateTime': 1427484723} LOOP: 2015-03-27 20:32:07 CET (1427484727) {'windchill': 41.0, 'dateTime': 1427484727, 'windDir': 337.5, 'windSpeed': 3.13171080768, 'windGust': 3.13171080768, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 337.5} LOOP: 2015-03-27 20:32:08 CET (1427484728) {'dateTime': 1427484728, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:32:10 CET (1427484730) {'windchill': 41.0, 'dateTime': 1427484730, 'windDir': 337.5, 'windSpeed': 3.13171080768, 'windGust': 3.13171080768, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 337.5} LOOP: 2015-03-27 20:32:10 CET (1427484730) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484730, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:32:18 CET (1427484738) {'dateTime': 1427484738, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} REC: 2015-03-27 20:32:00 CET (1427484720) {'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'rainFault': 0.0, 'totalRain': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'outTempBatteryStatus': 1.0, 'windFault': 0.0, 'inTemp': 74.12, 'hourRain': 0.0, 'inDewpoint': 51.40417211278528, 'barometer': 30.124040165386887, 'windchill': 39.333333333333336, 'rain': 0.0, 'windGustDir': 292.5, 'totalRainLast': 0.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'interval': 1, 'dayRain': 0.0, 'windDir': 279.25776410929177, 'windSpeed': 3.579098065920001, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 4.92125984064, 'uvBatteryStatus': 1.0, 'dateTime': 1427484720.0} LOOP: 2015-03-27 20:32:22 CET (1427484742) {'windchill': None, 'dateTime': 1427484742, 'windDir': 270.0, 'windSpeed': 3.13171080768, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:32:29 CET (1427484749) {'dateTime': 1427484749, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:32:33 CET (1427484753) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484753, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:32:36 CET (1427484756) {'windchill': None, 'dateTime': 1427484756, 'windDir': 292.5, 'windSpeed': 3.13171080768, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:32:39 CET (1427484759) {'dateTime': 1427484759, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:32:40 CET (1427484760) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484760, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:32:49 CET (1427484769) {'dateTime': 1427484769, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:32:50 CET (1427484770) {'windchill': 41.0, 'dateTime': 1427484770, 'windDir': 315.0, 'windSpeed': 3.13171080768, 'windGust': 3.3554044368000002, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:32:59 CET (1427484779) {'dateTime': 1427484779, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:32:59 CET (1427484779) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484779, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:33:03 CET (1427484783) {'windchill': 41.0, 'dateTime': 1427484783, 'windDir': 315.0, 'windSpeed': 3.13171080768, 'windGust': 3.3554044368000002, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:33:03 CET (1427484783) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484783, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:33:09 CET (1427484789) {'dateTime': 1427484789, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:17 CET (1427484797) {'UV': 0, 'rainRate': 0, 'usUnits': 1, 'dateTime': 1427484797} REC: 2015-03-27 20:33:00 CET (1427484780) {'outTempBatteryStatus': 1.0, 'outHumidity': 72.0, 'dayRain': 0.0, 'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'dateTime': 1427484780.0, 'totalRain': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'heatindex': 42.8, 'inDewpoint': 51.40417211278528, 'hourRain': 0.0, 'inTemp': 74.12, 'barometer': 30.124040165386887, 'windchill': 41.0, 'dewpoint': 34.40897921794182, 'rain': 0.0, 'interval': 1, 'pressure': 29.849612299653977, 'windGustDir': 315.0, 'totalRainLast': 0.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'UV': 0.0, 'rainFault': 0.0, 'windDir': 310.85694687571004, 'outTemp': 42.8, 'windSpeed': 3.13171080768, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 3.3554044368000002, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:33:18 CET (1427484798) {'windchill': 41.0, 'dateTime': 1427484798, 'windDir': 315.0, 'windSpeed': 3.13171080768, 'windGust': 3.5790980659200007, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:33:18 CET (1427484798) {'dateTime': 1427484798, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:20 CET (1427484800) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484800, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:33:28 CET (1427484808) {'dateTime': 1427484808, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:31 CET (1427484811) {'windchill': 41.0, 'dateTime': 1427484811, 'windDir': 315.0, 'windSpeed': 3.13171080768, 'windGust': 3.5790980659200007, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:33:38 CET (1427484818) {'dateTime': 1427484818, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:39 CET (1427484819) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484819, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:33:45 CET (1427484825) {'windchill': 41.0, 'dateTime': 1427484825, 'windDir': 292.5, 'windSpeed': 3.13171080768, 'windGust': 3.3554044368000002, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:33:48 CET (1427484828) {'dateTime': 1427484828, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:56 CET (1427484836) {'windchill': 41.0, 'dateTime': 1427484836, 'windDir': 292.5, 'windSpeed': 3.13171080768, 'windGust': 3.3554044368000002, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:33:56 CET (1427484836) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484836, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:33:58 CET (1427484838) {'dateTime': 1427484838, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:33:59 CET (1427484839) {'windchill': None, 'dateTime': 1427484839, 'windDir': 292.5, 'windSpeed': 3.13171080768, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:33:59 CET (1427484839) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484839, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:34:07 CET (1427484847) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484847, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:34:08 CET (1427484848) {'dateTime': 1427484848, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:34:13 CET (1427484853) {'windchill': None, 'dateTime': 1427484853, 'windDir': 292.5, 'windSpeed': 2.68432354944, 'windGust': None, 'rainRate': 0, 'usUnits': 1, 'windGustDir': None} LOOP: 2015-03-27 20:34:18 CET (1427484858) {'dateTime': 1427484858, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} REC: 2015-03-27 20:34:00 CET (1427484840) {'outTempBatteryStatus': 1.0, 'outHumidity': 72.0, 'dayRain': 0.0, 'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'dateTime': 1427484840.0, 'totalRain': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'heatindex': 42.8, 'inDewpoint': 51.40417211278528, 'hourRain': 0.0, 'inTemp': 74.12, 'barometer': 30.124040165386887, 'windchill': 41.0, 'dewpoint': 34.40897921794182, 'rain': 0.0, 'interval': 1, 'pressure': None, 'windGustDir': 315.0, 'totalRainLast': 0.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'UV': 0.0, 'rainFault': 0.0, 'windDir': 303.75, 'outTemp': 42.8, 'windSpeed': 3.1317108076800007, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 3.5790980659200007, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:34:27 CET (1427484867) {'windchill': 41.0, 'dateTime': 1427484867, 'windDir': 337.5, 'windSpeed': 2.68432354944, 'windGust': 3.13171080768, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 337.5} LOOP: 2015-03-27 20:34:28 CET (1427484868) {'dateTime': 1427484868, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:34:29 CET (1427484869) {'UV': 0, 'rainRate': 0, 'usUnits': 1, 'dateTime': 1427484869} LOOP: 2015-03-27 20:34:38 CET (1427484878) {'dateTime': 1427484878, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:34:39 CET (1427484879) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484879, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:34:41 CET (1427484881) {'windchill': 41.0, 'dateTime': 1427484881, 'windDir': 270.0, 'windSpeed': 2.68432354944, 'windGust': 3.5790980659200007, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 270.0} LOOP: 2015-03-27 20:34:48 CET (1427484888) {'dateTime': 1427484888, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:34:49 CET (1427484889) {'windchill': 41.0, 'dateTime': 1427484889, 'windDir': 270.0, 'windSpeed': 2.68432354944, 'windGust': 3.5790980659200007, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 270.0} LOOP: 2015-03-27 20:34:49 CET (1427484889) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484889, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:34:53 CET (1427484893) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484893, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:34:55 CET (1427484895) {'windchill': 40.0, 'dateTime': 1427484895, 'windDir': 292.5, 'windSpeed': 2.68432354944, 'windGust': 4.02648532416, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:34:58 CET (1427484898) {'dateTime': 1427484898, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:34:58 CET (1427484898) {'uvFault': 0, 'windBatteryStatus': 1.0, 'outTempBatteryStatus': 1.0, 'dateTime': 1427484898, 'outTempFault': 0, 'uvBatteryStatus': 1.0, 'clockUnsynchronized': 0, 'rainFault': 0, 'rainRate': 0, 'rainBatteryStatus': 1.0, 'usUnits': 1, 'windFault': 0} LOOP: 2015-03-27 20:35:08 CET (1427484908) {'dateTime': 1427484908, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:35:09 CET (1427484909) {'windchill': 40.0, 'dateTime': 1427484909, 'windDir': 247.5, 'windSpeed': 3.5790980659200007, 'windGust': 4.697566211520001, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 247.5} LOOP: 2015-03-27 20:35:19 CET (1427484919) {'dateTime': 1427484919, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} REC: 2015-03-27 20:35:00 CET (1427484900) {'outTempBatteryStatus': 1.0, 'outHumidity': 72.0, 'dayRain': 0.0, 'rainRate': 0.0, 'rainBatteryStatus': 1.0, 'dateTime': 1427484900.0, 'totalRain': 0.0, 'uvFault': 0.0, 'altimeter': 29.88777318369758, 'heatindex': 42.8, 'inDewpoint': 51.40417211278528, 'hourRain': 0.0, 'inTemp': 74.12, 'barometer': 30.124040165386887, 'windchill': 40.75, 'dewpoint': 34.40897921794182, 'rain': 0.0, 'interval': 1, 'pressure': 29.849612299653977, 'windGustDir': 292.5, 'totalRainLast': 0.0, 'clockUnsynchronized': 0.0, 'forecastIcon': 4.0, 'usUnits': 1, 'windBatteryStatus': 1.0, 'UV': 0.0, 'rainFault': 0.0, 'windDir': 291.7671848100276, 'outTemp': 42.8, 'windSpeed': 2.68432354944, 'inHumidity': 45.0, 'outTempFault': 0.0, 'windGust': 4.02648532416, 'uvBatteryStatus': 1.0, 'windFault': 0.0} LOOP: 2015-03-27 20:35:24 CET (1427484924) {'windchill': 40.0, 'dateTime': 1427484924, 'windDir': 315.0, 'windSpeed': 3.5790980659200007, 'windGust': 4.697566211520001, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 315.0} LOOP: 2015-03-27 20:35:28 CET (1427484928) {'dateTime': 1427484928, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:35:37 CET (1427484937) {'windchill': 39.0, 'dateTime': 1427484937, 'windDir': 247.5, 'windSpeed': 3.5790980659200007, 'windGust': 4.92125984064, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 247.5} LOOP: 2015-03-27 20:35:38 CET (1427484938) {'dateTime': 1427484938, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:35:39 CET (1427484939) {'altimeter': 29.88777318369758, 'rainRate': 0, 'dateTime': 1427484939, 'barometer': 30.124040165386887, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:35:41 CET (1427484941) {'totalRain': 0.0, 'rainRate': 0.0, 'rain': 0.0, 'dayRain': 0.0, 'totalRainLast': 0.0, 'dateTime': 1427484941, 'hourRain': 0.0, 'usUnits': 1} LOOP: 2015-03-27 20:35:41 CET (1427484941) {'altimeter': 29.917306556408743, 'rainRate': 0, 'dateTime': 1427484941, 'barometer': 30.15357353809805, 'forecastIcon': 4, 'usUnits': 1} LOOP: 2015-03-27 20:35:42 CET (1427484942) {'windchill': 39.0, 'dateTime': 1427484942, 'windDir': 247.5, 'windSpeed': 3.5790980659200007, 'windGust': 4.92125984064, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 247.5} LOOP: 2015-03-27 20:35:42 CET (1427484942) {'dewpoint': 34.40897921794182, 'outHumidity': 72, 'heatindex': 42.8, 'dateTime': 1427484942, 'outTemp': 42.8, 'rainRate': 0, 'usUnits': 1} LOOP: 2015-03-27 20:35:48 CET (1427484948) {'dateTime': 1427484948, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12} LOOP: 2015-03-27 20:35:51 CET (1427484951) {'windchill': 39.0, 'dateTime': 1427484951, 'windDir': 292.5, 'windSpeed': 3.5790980659200007, 'windGust': 5.592340728, 'rainRate': 0, 'usUnits': 1, 'windGustDir': 292.5} LOOP: 2015-03-27 20:35:58 CET (1427484958) {'dateTime': 1427484958, 'inHumidity': 45, 'inDewpoint': 51.40417211278528, 'rainRate': 0, 'usUnits': 1, 'inTemp': 74.12}
LOOP:   2015-03-27 20:35:58 CET

--
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to weewx-user+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to