├── ReadMe.md ├── conf ├── bck.ini ├── config.ini ├── config_gba_d01.ini └── configure.yml ├── core ├── __pycache__ │ └── lagrange.cpython-37.pyc └── lagrange.py ├── fig ├── halogen.d01.result.gif ├── mangkhut.d01.result.gif └── oceangrid.bmp.gif ├── lib ├── __pycache__ │ ├── air_parcel.cpython-37.pyc │ ├── cfgparser.cpython-37.pyc │ ├── preprocess_wrfinp.cpython-37.pyc │ └── read_ini.cpython-37.pyc ├── air_parcel.py ├── cfgparser.py └── preprocess_wrfinp.py ├── post_process ├── .draw_airp_with_map.py.swp ├── control_png_to_gif.sh ├── draw_airp_halogen_map.py ├── draw_airp_with_map.py └── draw_bitmaps.py ├── run.py ├── run_gba_d01.py └── utils ├── .assign_resident_time.py.swp ├── assign_resident_time.py ├── assign_resident_time_loop.py ├── control_multi_run.py ├── take_box_grid.py ├── take_domain_grid.py └── take_ocean_grid.py /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/ReadMe.md -------------------------------------------------------------------------------- /conf/bck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/conf/bck.ini -------------------------------------------------------------------------------- /conf/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/conf/config.ini -------------------------------------------------------------------------------- /conf/config_gba_d01.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/conf/config_gba_d01.ini -------------------------------------------------------------------------------- /conf/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/conf/configure.yml -------------------------------------------------------------------------------- /core/__pycache__/lagrange.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/core/__pycache__/lagrange.cpython-37.pyc -------------------------------------------------------------------------------- /core/lagrange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/core/lagrange.py -------------------------------------------------------------------------------- /fig/halogen.d01.result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/fig/halogen.d01.result.gif -------------------------------------------------------------------------------- /fig/mangkhut.d01.result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/fig/mangkhut.d01.result.gif -------------------------------------------------------------------------------- /fig/oceangrid.bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/fig/oceangrid.bmp.gif -------------------------------------------------------------------------------- /lib/__pycache__/air_parcel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/__pycache__/air_parcel.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/cfgparser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/__pycache__/cfgparser.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/preprocess_wrfinp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/__pycache__/preprocess_wrfinp.cpython-37.pyc -------------------------------------------------------------------------------- /lib/__pycache__/read_ini.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/__pycache__/read_ini.cpython-37.pyc -------------------------------------------------------------------------------- /lib/air_parcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/air_parcel.py -------------------------------------------------------------------------------- /lib/cfgparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/cfgparser.py -------------------------------------------------------------------------------- /lib/preprocess_wrfinp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/lib/preprocess_wrfinp.py -------------------------------------------------------------------------------- /post_process/.draw_airp_with_map.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/post_process/.draw_airp_with_map.py.swp -------------------------------------------------------------------------------- /post_process/control_png_to_gif.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/post_process/control_png_to_gif.sh -------------------------------------------------------------------------------- /post_process/draw_airp_halogen_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/post_process/draw_airp_halogen_map.py -------------------------------------------------------------------------------- /post_process/draw_airp_with_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/post_process/draw_airp_with_map.py -------------------------------------------------------------------------------- /post_process/draw_bitmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/post_process/draw_bitmaps.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/run.py -------------------------------------------------------------------------------- /run_gba_d01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/run_gba_d01.py -------------------------------------------------------------------------------- /utils/.assign_resident_time.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/.assign_resident_time.py.swp -------------------------------------------------------------------------------- /utils/assign_resident_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/assign_resident_time.py -------------------------------------------------------------------------------- /utils/assign_resident_time_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/assign_resident_time_loop.py -------------------------------------------------------------------------------- /utils/control_multi_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/control_multi_run.py -------------------------------------------------------------------------------- /utils/take_box_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/take_box_grid.py -------------------------------------------------------------------------------- /utils/take_domain_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/take_domain_grid.py -------------------------------------------------------------------------------- /utils/take_ocean_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lzhenn/easy-wrf-trck/HEAD/utils/take_ocean_grid.py --------------------------------------------------------------------------------