Zia,
Sorry for the delayed response.
The Temp portion of the payload is indeed 0x1CE. According to the payload format document the temp is transmitted in units of 0.0625 degrees C.
So all you need to do is multiply the value by 0.0625.
temp = int(0x1CE) * 0.0625
temp = 462 * 0.0625
temp = 28.875
Cheers,
Mike