Convert date from GSM to DEC


# converts a given date from GSM to DEC
decString = encodedDate.decode( ’hex ’)
decString = struct.unpack from(’>H5B’, decString)

This code fragment translates the given date from the GSM Standard to a readable DEC format.