#!/usr/bin/env python """ plots integrated ISR power over altitude range on top of HiST image stream """ from matplotlib.pyplot import show # from isrutils.overlayISRopt import overlayisrhist from isrutils.common import boilerplateapi if __name__ == '__main__': p,isrfn,odir,tlim = boilerplateapi() overlayisrhist(isrfn,odir,tlim,p.zlim,p) show()
def main(): overlayisrhist(boilerplateapi()) show()
#!/usr/bin/env python """ plots integrated ISR power over altitude range on top of HiST image stream """ from isrutils.overlayISRopt import overlayisrhist P = { "isrfn": "~/data/2013-04-14/isr/d0346834.dt3.h5", "zlim": (90, None), "zsum": (200, 350), "tlim": ["2013-04-14T08:54:10Z", "2013-04-14T08:54:20Z"], "azelfn": "~/code/histfeas/precompute/hst0cal.h5", "optfn": "~/data/2013-04-14/hst/2013-04-14T8-54_hst0.h5", "beamid": 64157, "odir": "out/2013-04-14", "verbose": False, } overlayisrhist(P)
#!/usr/bin/env python """ plots integrated ISR power over altitude range on top of HiST image stream """ from isrutils.overlayISRopt import overlayisrhist P={ 'isrfn': '~/data/2013-04-14/isr/d0346834.dt3.h5', 'zlim': (200, 350), 'tlim': ['2013-04-14T08:54:10Z', '2013-04-14T08:54:20Z'], 'azelfn': '~/code/histfeas/precompute/hst0cal.h5', 'optfn': '~/data/2013-04-14/hst/2013-04-14T8-54_hst0.h5', 'makeplot': [], 'beamid': 64157, 'odir': 'out/2013-04-14', 'verbose': False, } overlayisrhist(P)