Directly tagging people after your post has been up for just one day is usually not appreciated by people
Anyway, what’s your desired output here? The data is in table format already right or am I missing the point? I see you hardcoded one city in the row filter so I assume to want to process this data for all cities?
That’s right. In my workflow, I am filtering a city, and the output of the Missing Value node is a table with the weather forecast for the next 48 hours in the city.
This forecast is updated every hour.
Can the hourly forecast for all cities be recorded/saved? I want to create a historical weather forecast database and compare it with the actual weather data.
@CarlosEnrique84 if the question is about storing the data. You could have a dedicated database (like Oracle or Postgres) or you could store your results locally with timestamps.
Either as for example parquet files that could then be read back as a large file or being archived by time if you include the timestamp in the name.
Or you could use a local SQL database like SQLite or H2 to insert the latest round of your data including a timestamp.
In any case you might want to invest in some planning of how to set such a system up and also how to run and backup the system to prevent the loss of data.
Thank you so much for your response! I appreciate your time and dedication! The information you gave me is a completely new topic for me. I need to spend a lot of time trying to understand!