by Ryan Guerrero | Updated: 03/23/2016 | Comments: 10
Note: It appears that after this blog article was written, Weather Underground has been phasing out the “PWS – Upload Protocol.” The following tutorial may or may not work currently or in the future. However, it continues to offer some insight into structuring a CRBasic program with Include() files, Sub() routine calls, and the use of the HTTPGet() instruction.
Over the years, you may have seen a number of Weather Underground PWS (personal weather station) discussions and solutions posted on the Campbell Scientific User Forum. In this article, I’ll show you how to post your data directly from an Internet-connected CR6 Measurement and Control Datalogger to Weather Underground.
Weather Underground is a service that provides weather observations and forecasts via the Internet. Their data products use information collected from many sources, including over 180,000 personal weather stations.
Weather Underground provides a relatively simple web-based protocol for uploading data from a PWS. Their protocol is much simpler to use than many other hosted services you might find out there. The Weather Underground protocol requires only a simple HTTP GET request with the station, user, and sensor information embedded into the URL. This process can be quite easy for a Campbell Scientific data logger, such as a CR6, to perform using the HTTPGet() instruction and a few string operators.
Recommended for You: For more detailed information about the protocol, read the “PWS – Upload Protocol” wiki entry. |
There are a number of Campbell Scientific-based personal weather stations in operation today. One example is KUTNORTH6, which is owned and operated by a Campbell Scientific employee in Logan, Utah. From the Weather Underground website, you can view the KUTNORTH6 PWS dashboard, which is an example of what your data might look like after you post it.
To get started, you will need to make sure you’ve registered with Weather Underground, created a PWS, and made note of your PWS station ID and account password. (Currently, a basic account is free on their site.)
The easiest way to create your weather station program is to use the Short Cut Program Generator for Windows. Here is an example program I created that includes measurements for wind speed, wind direction, air temperature, and relative humidity:
Public WindSpeed_MPH, WindDir, TRHData(2)
Alias TRHData(1) = AirTemp_F, RH
BeginProg
Scan(1,Min,1,0)
'measure 05103 windspeed and direction;
'then measure cs215 temp/RH probe with SDI-12;
PulseCount(WindSpeed_MPH,1,U4,5,1,0.2192,0)
BrHalf(WindDir,1,mV5000,U2,U1,1,2500,True,20000,60,355,0)
If WindDir>=360 Or WindDir<0 then Winddir=0
SDI12Recorder(TRHData(),C1,"0","M!",1,0)
AirTemp_F=AirTemp_F*1.8+32
NextScan
EndProg
Download the wunderground.dld file, and load it onto your data logger’s CPU drive. You will reference this file in your program using the Include() instruction. (Alternatively, you could copy the contents of the file into your program before the BeginProg statement. In this example, however, I’ll just use the Include() instruction method.)
Note: In the wunderground.dld file that you downloaded in the previous step, there is an instruction that I have named wundergroundPWS(). Using Include "CPU:wunderground.dld" makes the wundergroundPWS() instruction available for use within your CRBasic program.
You will need to declare an array that passes your data into the wundergroundPWS() instruction. The data in this array are organized in a very specific order, which must be followed.
The weather data array can hold 1 to 30 elements of data that may include those in the following list. For our example, we only need to use a subset of the weather data array. So I have declared the array in our example to a size of 11 (Dim WxData(11)), making it just large enough to allow me to specify our instantaneous wind direction, wind speed, relative humidity, and air temperature measurements.
Tip: If you’re interested in posting air-quality data, the wundergroundPWS() instruction also supports a second air-quality data array. The second array’s content and order can be found inside the wunderground.dld file you downloaded. Alternatively, you can find the information in the Pollution Fields section of the PWS wiki entry.
The wundergroundPWS() instruction accepts a number of parameters:
If you were to include all of the parameters, the instruction would look like this:
Call wundergroundPWS(Result,ID,Pass,Weather,AirQual,Timestamp,UTCOffset,ServerResponse)
The final step to post your data to the Weather Underground website is to put the data into your array and call the wundergroundPWS() instruction.
Tip: You can use the TimeIntoInterval() instruction to control how often data is posted over the Internet.
When you have completed the steps, your program might look similar to this:
'include the contents of wunderground.dld
'that has been placed on the datalogger cpu drive
Include "CPU:wunderground.dld"
Dim WxData(11)
Public Result
Public WindSpeed_MPH, WindDir, TRHData(2)
Alias TRHData(1) = AirTemp_F, RH
BeginProg
Scan(1,Min,1,0)
'measure 05103 windspeed and direction;
'then measure cs215 temp/RH probe with SDI-12;
PulseCount(WindSpeed_MPH,1,U4,5,1,0.2192,0)
BrHalf(WindDir,1,mV5000,U2,U1,1,2500,True,20000,60,355,0)
If WindDir>=360 Or WindDir<0 Then WindDir=0
SDI12Recorder(TRHData(),C1,"0","M!",1,0)
AirTemp_F=AirTemp_F*1.8+32
If TimeIntoInterval(0,10,Min) Then
'initialize array with NAN;
'then populate with data;
'then call our instruction
WxData() = NAN
WxData(1) = WindDir
WxData(2) = WindSpeed_MPH
WxData(9) = RH
WxData(11) = AirTemp_F
Call wundergroundPWS(Result,"stationID","password",WxData,0)
EndIf
NextScan
EndProg
By using the wunderground.dld file with the wundergroundPWS() instruction, along with the CRBasic Include() instruction, I hope you’re able to successfully post your data to the Weather Underground website. If it’s helpful to you, you can copy my example program file.
Be sure to post your Station ID below, so we can see your data display. Let us know if your experience went smoothly or if you have any questions.
Comments
djtire | 11/24/2015 at 12:23 PM
It is also possible that a sensor that is using the 12V or SW12 may be causing the problem. If battery is good, the charging source is good, and the charge controller is good, but the system seems to be having power issues it could be a sensor or sensor cable issue.
We recently had a client who's datalogger would power up, appear fine for about a short period and then disconnect from the PC he was using to communicate with it. After several times of rebooting the power and trying to maintain communication without success, he call us. We went through the process described above and found everything was fine. Then we started to disconnect sensors that were using the 12V terminal, one by one. Sure enough, one of the sensor was the culprit. With the sensor disconnected everything returned to normal.
Notso | 11/24/2015 at 12:56 PM
Thanks. We discuss disconnecting powered sensors in the “6 Steps to Determine if Your Data Logger Needs Repairing” blog article." It's a quick and easy way to determine if the problem is with the sensor or with the datalogger. I'm glad it worked for you.
Notso | 11/24/2015 at 01:29 PM
Another common power supply issue not mentioned in the article is when there is some data stored on the datalogger during daylight hours but long data gaps during the night and on cloudy days. This indicates that the solar panel provides enough current to keep the system running in sunlight but the battery can't hold a charge and needs to be replaced. When this happens you might also see the system crash when a cell modem or radio powers on or when you try to connect with a computer.
Jessica-S | 06/13/2020 at 10:00 AM
I have solar panels on the roof of my box truck. They are connected to a battery which is connected to an invertor. I use the Victron connect 100/50 app to see my solar intake and battery power. On a normal sunny day I produce about 40w at any given time producing up to 1.5 kWh for the day. I took it in for an oil change and a fuse repair on the truck but after picking up the truck, my app is reading that I am producing 1w for the last 3 days. It is very sunny and the truck is parked in it normal spot in direct sunlight. The 12v battery reads as being at 13.7v and seems that the fridge has plenty of power to keep running. It appears I am collecting solar power based on much power my battery has and continues to power all of my things without issue for 3 days but am confused why the solar is only ready as producing 1w-10w for the day when it usually reads around 1.5 kWh. Any help would be greatly appreciated.
Notso | 06/17/2020 at 09:53 AM
Hi Jessica-S. I'm not familiar with the VictronConnect app, but the fact that your battery is still reading 13.7 volts while powering a fridge indicates that the system might be fine. However I would see what the battery voltage does when the sun isn't shining because if it drops quickly that would indicate that during the day the fridge is running on solar power only because the battery can't hold a charge. If the battery drops slowly at night, then my best guess is that the system is fine, but something has gone wrong with the software and it isn't measuring correctly. In that case I recommend that you contact Victron and see if they can help. Good luck.
Please log in or register to comment.