# dictionary for loadADDEImage. These keywords # will tell loadADDEImage to load in Mesoscale-1 # sector band 14 data at full resolution from # atm.ssec.wisc.edu RTGOESR addeParms = dict( server = 'atm.ucar.edu', dataset = 'RTGOESR', descriptor = 'M1C14', size = 'ALL', unit = 'TEMP', ) # initialize an empty list that we can append to # to create the loop satList = [] # loop through the 20 most recent images for x in range(-20,0): data = loadADDEImage(position=x, **addeParms) #append this data object to the satList list satList.append(data) # build a window and display the data panel = buildWindow() layer = panel[0].createLayer('Image Sequence Display', satList) layer.setEnhancement('ABI IR Temperature')