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.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.