Here is how I imported data into an Excel Spreadheet on a PC
In Excel, open a new blank spreadsheet
Data>Get Data>From Other sources>From Web
I wanted the time interval to be 300 seconds or 5 minutes for my purposes. I used the following web address string to get 5 days of data:
Note: At some point, the time interval increases to 30 minutes, so I stayed with 5 days. A single day’s worth of data using the day_offset method yields a one minute time interval & that was too much detail for my needs.
In the URL Box, I entered the following (except use your own device ID, start/end times & Token).
h t t p s://swd.weatherflow.com/swd/rest/observations/device/yourdeviceID?time_start=1717995600&time_end=1718427600&format=csv&token=yourtoken
Note : remove spaces from the https
Click OK
in the Data Type Detection pulldown, select “Do not detect data types”
at bottom right, select Load>Load To…
select Table & New Worksheet
The Unix timestamps in the above example represent a starting time of June 10, 2024 0:00 & span exactly 5 days to midnight at the end of the 14th.
on a temporary worksheet…
format the date column as you like. I selected Date Type 3/14/12 13:30
format the UNIX timestamp column as a number
for a date, I entered 6/10/24 0:00
I used the following excel formula to convert the dates/times I wanted to a UNIX timestamp :
=(A4-DATE(1970,1,1)) * 86400+18000
the 18000 converts UTC to my Time Zone. 18000 seconds represents the 5 hour adjustment for my zone. Also, change the A4 to your ‘date cell’ on the spreadsheet.
on the Tempest data spreadsheet, you can convert the UNIX timestamps, after formatting the column(s) using :
=(your timestamp cell + or - your time zone shift)/86400+(DATE(1970,1,1))
example : =(C11-18000)/86400+(DATE(1970,1,1))
Converting station pressure in mb to sea level in inHg was trickier but same as Tempest equation. I used the excel formula :
=your station pressure in mb * (1+(1013.25/your station pressure in mb)^0.19 * (0.0065 * your station elevation in m/288.15))^5.256 + or - any adjustment) * .02952998
I used a -.4 adjustment to be in agreement with what my device is displaying. I’ll keep an eye on it. I don’t understand why the formula doesn’t exactly match what Tempest is doing (it’s their own equation).
I deleted columns 1, 2, 3, 13, 14, 15, 20, 21 & 26
I added columns 4a, 5a, 6a, 7a, 10a, 11a, 16a, 22a, 23a & 24a to do the conversions.