
import twccommon

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

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

if (not areaList):
    abortMsg()

for area in areaList:
    b = twc.Data()
    b.skyCondition = 1201
    b.temp = 57
    b.humidity = 97
    b.dewpoint = 56
    b.altimeter = 29.86
    b.visibility = 6.000;
    b.windDirection = 5
    b.windSpeed = 6
    b.gusts = None
    b.windChill = 56
    b.pressureTendency = 0

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

    