Page 1 of 1
Sample Live Data XML
Posted: Tue Sep 05, 2017 2:48 pm
by Mike.Manzo
Greetings -
I am developing an application that is designed to read the live data from a MB. The MB wiki for livedataxml.cgi is helpful, but I find it incomplete for exemplar data for each sensor supported (namely missing is SOIL and LEAF). If there are any intrepid MB users out there that would like to share the outputs of their livedataxml calls (with SOIL and LEAF sensors), I would be grateful!
Thanks!
-- Mike
Re: Sample Live Data XML
Posted: Tue Sep 05, 2017 3:39 pm
by wvdkuil
http://meteobridge.com/wiki/index.php/Templates
When you have a fully equiped Davis Vantage you might also have soil and leaf sensors. These are also reported as temp/hum sensors, but there is no dewpoint data computed for these types of sensors. soil sensors are enumerated as "th10temp", "th10hum", ..., "th13temp", "th13hum" and leaf sensors are listed as "th15temp", "th15hum", ..., "th18temp", "th18hum". "hum" values do not represent relative humidity in that case but data in units "cbar" and "wet".
Wim
Re: Sample Live Data XML
Posted: Tue Sep 05, 2017 5:31 pm
by Mike.Manzo
Thanks, Wim. I saw that and got excited ... what I am really after is the raw output from the XML.
<logger>
<THB date="20121227224318" id="thb0" temp="26.0" hum="37" dew="10.2"
press="1008.8" seapress="1010.1" fc="2" lowbat="0" />
<TH date="20130104141909" id="th0" temp="9.1" hum="95" dew="8.3" lowbat="0" />
<RAIN date="20130104141856" id="rain0" rate="0.0" total="3.0" delta="0.0" lowbat="0" />
<WIND date="20130104141916" id="wind0" dir="109" gust="0.9" wind="2.2" chill="9.1" lowbat="0" />
</logger>
I would like to see example sensor entries for SOIL and LEAF. I can get through the rest; without properly formatted XML as a guide (and not having these sensor myself) makes this poking in the dark.
Thanks again!