Hi there,
I’m trying to filter data based on a value in a specific row:
whole (not correctly working) Query:
from(bucket: "OpenWeatherMap")
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r["_measurement"] == "weather")
|> filter(fn: (r) => r["_field"] == "temperature")
|> filter(fn: (r) => r["forecast"] == "6h")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
|> filter(fn: (r) =>
if r["condition_id"] == "800" then
r["condition_id"] == "800"
else if r["condition_id"] == "801" then
r["condition_id"] == "801"
else
r["condition_id"] == "802"
)
Note: The forecast = 6h should be forecast = *. Just using 6h because I have multiple datapoint to test.
Background:
I’m using a telegraf config to get the data from openweathermap api for the current location. Saved in bucket “OpenWeatherMap”
I want to get the current temperature to show in a grafana dashboard but sometimes openweathermap has multiple datapoint (condition_id) at the same time, that indicate cloud/rain status which beaks my dashboard.
What I’m trying:
Get the value that is available at the highest condition_id.
Let’s say condition_id is 800 (clear) and temperature value is 20, i want 20. But if there is 800 (clear) and 801 (clouds) i want to prioritize and only get the 801 value over the 800 value.
condition_id is predefined from 800 to 804. Value Priority should be 804 > 803 > .. > 800
Is this possible with a Query?
more on condition_id
https://openweathermap.org/weather-conditions