
import twccommon

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

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

if (not areaList):
    abortMsg()

for area in areaList:
    b = twc.Data()
    b.skyCondition = 1100
    b.temp = 58
    b.humidity = 93
    b.dewpoint = 56
    b.altimeter = 29.87
    b.visibility = 7.000;
    b.windDirection = 9
    b.windSpeed = 12
    b.gusts = 23
    b.windChill = 56
    b.pressureTendency = 2

    wxdata.setData('KLIT', 'obs', b, 1764041088)

    