parser.add_option('-i','--icao',action='store',type='int',dest='icao',default='0xABCDEF',help='The ICAO number for the plane in hex. Ensure the ICAO is prefixed with \'0x\' to ensure this is parsed as a hex number. Default: %default')
parser.add_option('--lat','--latitude',action='store',type='float',dest='latitude',default='12.34',help='Latitude for the plane in decminal degrees. Default: %default')
parser.add_option('--lon','--long','--longitude',action='store',type='float',dest='longitude',default='56.78',help='Longitude for the place in decminal degrees. Default: %default')
parser.add_option('-a','--alt','--altitude',action='store',type='float',dest='altitude',default='9876.5',help='Altitude in decminal feet. Default: %default')
parser.add_option('--ca','--capability',action='store',type='int',dest='capability',default=5,help='The capability. (Think this is always 5 from ADSB messages. More info would be appreciate). Default: %default')
parser.add_option('--tc','--typecode',action='store',type='int',dest='typecode',default=11,help='The type for the ADSB messsage. See https://adsb-decode-guide.readthedocs.io/en/latest/content/introduction.html#ads-b-message-types for more information. Default: %default')
parser.add_option('--ss','--surveillancestatus',action='store',type='int',dest='surveillancestatus',default=0,help='The surveillance status. (Think this is always 0 from ADSB messages. More info would be appreciate). Default: %default')
parser.add_option('--nicsb','--nicsupplementb',action='store',type='int',dest='nicsupplementb',default=0,help='The NIC supplement-B.(Think this is always 0 from ADSB messages. More info would be appreciate). Default: %default')
parser.add_option('--time',action='store',type='int',dest='time',default=0,help='The time. (Think this is always 0 from ADSB messages. More info would be appreciate). Default: %default')
parser.add_option('-s','--surface',action='store',default=False,dest='surface',help='If the plane is on the ground or not. Default: %default')
parser.add_option('-o','--out','--output',action='store',type='string',default='Samples_256K.iq8s',dest='outputfilename',help='The iq8s output filename. This is the file which you will feed into the hackRF. Default: %default')