Yes, the simulator doesnt provide ET, whereas the Vantage driver does provide ET.
But, bingo, your suggestion did the trick. Now I've placed my service just after StdWxCalculate, and now there is an ET popping up Thanks! Op woensdag 27 mei 2020 22:26:49 UTC+2 schreef gjr80: > > As you say the use of simulator/VP2 explains it, the simulator driver does > not emit ET so it must rely on StdWXCalculate when using the vantage driver > it does (in your case) emit ET so it is there for your service. > > Regards the order I apologise, I mislead you, you do indeed need to change > the order but not by changing the order of the service lines (it will have > no effect by itself) but rather moving your service to another service line > such that it is processed after StdWXCalculate but before the record is > saved to archive by StdArchive, something like this should work (untested): > > [Engine] > > [[Services]] > # This section specifies the services that should be run. They are > # grouped by type, and the order of services within each group > # determines the order in which the services will be run. > prep_services = weewx.engine.StdTimeSynch > data_services = , > process_services = weewx.engine.StdConvert, > weewx.engine.StdCalibrate, weewx.engine.StdQC, > weewx.wxservices.StdWXCalculate, user.electricity.AddElectricity > archive_services = weewx.engine.StdArchive > restful_services = weewx.restx.StdStationRegistry, > weewx.restx.StdWunderground, weewx.restx.StdPWSweather, > weewx.restx.StdCWOP, weewx.restx.StdWOW, weewx.restx.StdAWEKAS > report_services = weewx.engine.StdPrint, weewx.engine.StdReport > > Equally you could add it to the archive_services line before StdArchive, > but that is a little misleading in terms of what your service does. > > -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/6a2de8d1-4a12-4ad1-8c79-95bf36ff86c3%40googlegroups.com.
