
import twccommon

areaList = wxdata.getUGCInterestList('ARC007', 'county')

twccommon.Log.info("RWE - Current Conditions is being sent")

if (not areaList):
    abortMsg()

for area in areaList:
    b = twc.Data()
    b.skyCondition = 2600
    b.temp = 54
    b.humidity = 98
    b.dewpoint = 54
    b.altimeter = 29.85
    b.visibility = 7.000;
    b.windDirection = 9
    b.windSpeed = 11
    b.gusts = 22
    b.windChill = 51
    b.pressureTendency = 0

    wxdata.setData('KROG', 'obs', b, 1764041089)

    