Pressure Trend **solved**
Posted: Mon Feb 11, 2019 11:42 pm
Is there anyway Meteobridge can determine Pressure trend?
can the "deltaxx" selector be used with Pressure?
can the "deltaxx" selector be used with Pressure?
Code: Select all
<tr><td>Delta Pressure</td>
<td>[thb0seapress-delta30=inHg.2:--] inHg</td>
<td>[thb0seapress-delta1h=inHg.2:--] inHg</td>
<td>[thb0seapress-delta60=inHg.2:--] inHg</td></tr>
does this show a positive or negative value or the actual pressure?For sensors delivering cumulated values like "rain0total" and "sol0evo" the following selectors are defined:
sum1, sum2, sum3, ..., sum60, sum1h, sum2h, sum3h, ..., sum24h: selects summarized delta values from the last one to 60 minutes or one to 24 hours. This is useful to get amount of total rain in a certain time frame: "rain0total-sum60" is rainfall in mm of last 60 minutes.
delta1, delta2, delta3, ..., delta60, delta1h, delta2h, delta3h, ..., delta24h: selects difference between current value and value from one to 60 minutes or one to 24 hours ago. A positive number shows that value has increased, a negative number indicates the value has decreased. This is useful to do trend analysis over various time spans.
Code: Select all
[thb0seapress-delta30=inHg.2:--]
[thb0seapress-delta1h=inHg.2:--]
[thb0seapress-delta60=inHg.2:--]
Thanks. I didnt see that... enbarotrend should fit the one I need.