Hi, new here. And an Access rookie
I have created an Access database to help me filter out some data from meteorological equipment that records Wind speed, sun irradiance, and temperature.
I have data that has been recorded every 15 seconds every day for 7 days. So I have 5,760 data points per day with the above data.
Now I have to combine the values within each minute and average them out. To create a new table with 1,440 data points with averaged out wind speed, irradiance, and temperature for each minute.
Example 3 minutes of Original data:
Date Irradiance wind speed air temperature 1/18/16 11:27:00 AM
678.22 28.94 130.00 1/18/16 11:27:15 AM
692.99 40.61 130.00 1/18/16 11:27:30 AM 734.09 35.58 130.00 1/18/16 11:27:45 AM
728.59 39.79 130.00 1/18/16 11:28:00 AM 720.56 38.15 130.00 1/18/16 11:28:15 AM 716.03 37.05 130.28 1/18/16 11:28:30 AM 708.85 38.48 131.00 1/18/16 11:28:45 AM 694.24 38.65 131.00 1/18/16 11:29:00 AM 644.35 33.78 131.00 1/18/16 11:29:15 AM 550.85 43.90 131.00 1/18/16 11:29:30 AM 594.44 34.62 132.10 1/18/16 11:29:45 AM 624.47 43.19 133.00
I'd need to access to create a new table that has something like this (I average out the 4 data points within each minute manually):
Date Irradiance wind speed air temperature 1/18/16 11:27:00 AM
708.47 36.23 130.00 1/18/16 11:28:00 AM 709.92 38.08 130.57 1/18/16 11:29:00 AM 603.53 38.88 131.78
At which point I can then create another query and filter that data based on other simple parameters.
My question is, is this possible in Access? And can it be done via a Create a Table query and then some grouping criteria? Or will I require some script to accomplish this task.
Thanks for any help/pointers!