
import twccommon

areaList = wxdata.getUGCInterestList('ARC143', '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 = 55
    b.humidity = 93
    b.dewpoint = 53
    b.altimeter = 29.84
    b.visibility = 10.000;
    b.windDirection = 1
    b.windSpeed = 1
    b.gusts = None
    b.windChill = 55
    b.pressureTendency = 0

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

    