
import twccommon

areaList = wxdata.getUGCInterestList('MOC183', '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 = 51
    b.humidity = 89
    b.dewpoint = 48
    b.altimeter = 29.89
    b.visibility = 9.000;
    b.windDirection = 8
    b.windSpeed = 9
    b.gusts = 18
    b.windChill = 48
    b.pressureTendency = 2

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

    