Our full technical support staff does not monitor this forum. If you need assistance from a member of our staff, please submit your question from the Ask a Question page.


Log in or register to post/reply in the forum.

.dat file to Wuhu


Makada Jun 3, 2018 07:48 PM

Hi,

I would like to have my .dat file read by Wuhu software to upload to weather underground. 

Ive got a cr1000 datalogger and should be compatible with Wuhu.

I would like to know what should be written in the .dat file to work with Wuhu.

Maybe someone got an example.


Makada Jun 4, 2018 05:21 PM

Hi,

How can get the data below in the data position corresponding the number before the Data?

For example: 

6 Temperature F has to be in data position 6 and so on.... 

6 Temperature °F
7 Dew Point Temp °F
8 Relative Humidity %
9 Wind Avg Speed mph
10 Wind Avg Dir °N
12 Max Wind Gust mph
14 Solar Radiation KW/m²
15 Absolute pressure mb
16 Relative pressure mb
23 Precip since midnight In
24 Precip last hour In
25 Precip last 24 hours In
26 Precip since 7/1 Inch


Makada Jun 6, 2018 11:37 AM
like so?

Dim WxData(27)
 WxData() = NAN 
WxData(6) = Temperature °F
WxData(7) = Dew Point Temp °F
WxData(8) = Relative Humidity %
WxData(9) = Wind Avg Speed mph
WxData(10) = Wind Avg Dir °N
WxData(12) = Max Wind Gust mph
WxData(14) = Solar Radiation KW/m²
WxData(15) = Absolute pressure mb
WxData(16) = Relative pressure mb
WxData(23) = Precip since midnight In
WxData(24) = Precip last hour In
WxData(25) = Precip last 24 hours In
WxData(26) = Precip since 7/1 Inch
 

Makada Jun 7, 2018 02:56 PM

Let me explain a bit more.

I want my .dat file to output an array compatible CSV file.

Thats the part i understand.

But i need to change the order where the data is stored in a certain CSV column.

E.g. in column 6 in the csv file the temperature needs to be stored, etc.


Makada Jun 8, 2018 09:34 AM

hi,

heres an example of the data order, but i want it every minute;

Date,TemperatureHighC,TemperatureAvgC,TemperatureLowC,DewpointHighC,DewpointAvgC,DewpointLowC,HumidityHigh,HumidityAvg,HumidityLow,PressureMaxhPa,PressureMinhPa,WindSpeedMaxKMH,WindSpeedAvgKMH,GustSpeedMaxKMH,PrecipitationSumCM


2016-9-7,30.6,21.4,14.5,22.7,18.6,14.3,99,86,60,1026,1020,12,3,16,0.00
2016-9-8,30.2,22.1,14.7,21.7,17.9,14.5,99,80,53,1020,1015,26,4,26,0.00
2016-9-9,32.9,23.1,15.1,22.9,19.0,14.9,99,81,53,1017,1015,15,3,15,0.00
2016-9-10,33.2,23.8,16.4,22.8,19.2,16.2,99,79,49,1018,1015,15,3,16,0.00
2016-9-11,32.6,23.7,16.0,22.3,18.8,15.8,99,77,48,1020,1017,16,4,19,0.00
2016-9-12,35.1,24.9,16.3,22.4,18.9,16.1,99,73,46,1021,1018,12,4,12,0.00
2016-9-13,34.0,24.5,16.6,21.5,18.3,16.4,99,71,42,1019,1015,17,3,17,0.00
2016-9-14,32.7,24.2,15.7,21.5,17.8,12.8,99,72,46,1017,1015,19,4,21,0.00
2016-9-15,26.2,20.2,14.2,18.2,13.2,11.4,85,75,60,1017,1015,16,3,19,0.00

Log in or register to post/reply in the forum.