├── .gitignore ├── README.md ├── XZ_cmaps ├── .gitignore ├── README.md ├── cmaps.png ├── create_cmaps.py ├── data │ ├── aqi.json │ ├── aqi.npy │ ├── dbz.json │ └── pyart_dbz.json └── plot_cmaps.py ├── XZ_flight ├── __init__.py └── flight_altitude.py ├── XZ_lightning ├── LDA_merge │ └── merge_entln_cldn_20200901.ipynb └── preview_entln_20200901.ipynb ├── XZ_maps ├── shapefiles │ └── cnmap │ │ ├── README.md │ │ ├── china_city.dbf │ │ ├── china_city.prj │ │ ├── china_city.shp │ │ ├── china_city.shx │ │ ├── china_country.dbf │ │ ├── china_country.prj │ │ ├── china_country.shp │ │ ├── china_country.shx │ │ ├── china_county-level_city.cpg │ │ ├── china_county-level_city.dbf │ │ ├── china_county-level_city.prj │ │ ├── china_county-level_city.shp │ │ ├── china_county-level_city.shx │ │ ├── china_nine_dotted_line.dbf │ │ ├── china_nine_dotted_line.prj │ │ ├── china_nine_dotted_line.shp │ │ ├── china_nine_dotted_line.shx │ │ ├── china_province.dbf │ │ ├── china_province.prj │ │ ├── china_province.shp │ │ ├── china_province.shx │ │ ├── simplied_china_country.dbf │ │ ├── simplied_china_country.prj │ │ ├── simplied_china_country.shp │ │ └── simplied_china_country.shx └── xin_cartopy.py ├── XZ_model ├── .gitignore ├── MEIC │ ├── .gitignore │ ├── README.md │ ├── emission_example.png │ └── src │ │ ├── conversion_table.csv │ │ ├── mozcart.py │ │ ├── plot_wrfchemi.py │ │ └── vito.py ├── __init__.py ├── comp_chem_emc.py ├── comp_chem_emc_2d.py ├── comp_lda_radar.py ├── hover_profile.py ├── irr_names.py ├── plot_lfr.py ├── tslist_read.py └── wrfchem.py ├── XZ_proplot ├── .proplotrc └── proplot_settings.md ├── XZ_radar ├── .gitignore └── radar.py ├── XZ_satpy └── readers │ ├── agri_l1.py │ ├── agri_l1.yaml │ ├── entln.py │ └── entln.yaml ├── XZ_sonde ├── __init__.py ├── generate_tslist.py ├── match_sonde_tslist.py ├── ozonesonde_profile.py └── pressure.py ├── XZ_sublime └── README.md └── environment.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/README.md -------------------------------------------------------------------------------- /XZ_cmaps/.gitignore: -------------------------------------------------------------------------------- 1 | !*.png -------------------------------------------------------------------------------- /XZ_cmaps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/README.md -------------------------------------------------------------------------------- /XZ_cmaps/cmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/cmaps.png -------------------------------------------------------------------------------- /XZ_cmaps/create_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/create_cmaps.py -------------------------------------------------------------------------------- /XZ_cmaps/data/aqi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/data/aqi.json -------------------------------------------------------------------------------- /XZ_cmaps/data/aqi.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/data/aqi.npy -------------------------------------------------------------------------------- /XZ_cmaps/data/dbz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/data/dbz.json -------------------------------------------------------------------------------- /XZ_cmaps/data/pyart_dbz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/data/pyart_dbz.json -------------------------------------------------------------------------------- /XZ_cmaps/plot_cmaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_cmaps/plot_cmaps.py -------------------------------------------------------------------------------- /XZ_flight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_flight/__init__.py -------------------------------------------------------------------------------- /XZ_flight/flight_altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_flight/flight_altitude.py -------------------------------------------------------------------------------- /XZ_lightning/LDA_merge/merge_entln_cldn_20200901.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_lightning/LDA_merge/merge_entln_cldn_20200901.ipynb -------------------------------------------------------------------------------- /XZ_lightning/preview_entln_20200901.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_lightning/preview_entln_20200901.ipynb -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/README.md -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_city.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_city.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_city.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_city.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_city.shx -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_country.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_country.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_country.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_country.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_country.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_country.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_country.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_country.shx -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_county-level_city.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_county-level_city.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_county-level_city.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_county-level_city.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_county-level_city.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_county-level_city.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_county-level_city.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_county-level_city.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_county-level_city.shx -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_nine_dotted_line.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_nine_dotted_line.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_nine_dotted_line.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_nine_dotted_line.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_nine_dotted_line.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_nine_dotted_line.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_nine_dotted_line.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_nine_dotted_line.shx -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_province.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_province.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_province.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_province.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_province.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_province.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/china_province.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/china_province.shx -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/simplied_china_country.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/simplied_china_country.dbf -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/simplied_china_country.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/simplied_china_country.prj -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/simplied_china_country.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/simplied_china_country.shp -------------------------------------------------------------------------------- /XZ_maps/shapefiles/cnmap/simplied_china_country.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/shapefiles/cnmap/simplied_china_country.shx -------------------------------------------------------------------------------- /XZ_maps/xin_cartopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_maps/xin_cartopy.py -------------------------------------------------------------------------------- /XZ_model/.gitignore: -------------------------------------------------------------------------------- 1 | data/ -------------------------------------------------------------------------------- /XZ_model/MEIC/.gitignore: -------------------------------------------------------------------------------- 1 | !*.csv 2 | !*.png 3 | *.asc 4 | *aux.xml 5 | -------------------------------------------------------------------------------- /XZ_model/MEIC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/README.md -------------------------------------------------------------------------------- /XZ_model/MEIC/emission_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/emission_example.png -------------------------------------------------------------------------------- /XZ_model/MEIC/src/conversion_table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/src/conversion_table.csv -------------------------------------------------------------------------------- /XZ_model/MEIC/src/mozcart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/src/mozcart.py -------------------------------------------------------------------------------- /XZ_model/MEIC/src/plot_wrfchemi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/src/plot_wrfchemi.py -------------------------------------------------------------------------------- /XZ_model/MEIC/src/vito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/MEIC/src/vito.py -------------------------------------------------------------------------------- /XZ_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/__init__.py -------------------------------------------------------------------------------- /XZ_model/comp_chem_emc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/comp_chem_emc.py -------------------------------------------------------------------------------- /XZ_model/comp_chem_emc_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/comp_chem_emc_2d.py -------------------------------------------------------------------------------- /XZ_model/comp_lda_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/comp_lda_radar.py -------------------------------------------------------------------------------- /XZ_model/hover_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/hover_profile.py -------------------------------------------------------------------------------- /XZ_model/irr_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/irr_names.py -------------------------------------------------------------------------------- /XZ_model/plot_lfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/plot_lfr.py -------------------------------------------------------------------------------- /XZ_model/tslist_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/tslist_read.py -------------------------------------------------------------------------------- /XZ_model/wrfchem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_model/wrfchem.py -------------------------------------------------------------------------------- /XZ_proplot/.proplotrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_proplot/.proplotrc -------------------------------------------------------------------------------- /XZ_proplot/proplot_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_proplot/proplot_settings.md -------------------------------------------------------------------------------- /XZ_radar/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin.bz2 2 | -------------------------------------------------------------------------------- /XZ_radar/radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_radar/radar.py -------------------------------------------------------------------------------- /XZ_satpy/readers/agri_l1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_satpy/readers/agri_l1.py -------------------------------------------------------------------------------- /XZ_satpy/readers/agri_l1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_satpy/readers/agri_l1.yaml -------------------------------------------------------------------------------- /XZ_satpy/readers/entln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_satpy/readers/entln.py -------------------------------------------------------------------------------- /XZ_satpy/readers/entln.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_satpy/readers/entln.yaml -------------------------------------------------------------------------------- /XZ_sonde/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sonde/__init__.py -------------------------------------------------------------------------------- /XZ_sonde/generate_tslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sonde/generate_tslist.py -------------------------------------------------------------------------------- /XZ_sonde/match_sonde_tslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sonde/match_sonde_tslist.py -------------------------------------------------------------------------------- /XZ_sonde/ozonesonde_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sonde/ozonesonde_profile.py -------------------------------------------------------------------------------- /XZ_sonde/pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sonde/pressure.py -------------------------------------------------------------------------------- /XZ_sublime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/XZ_sublime/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxdawn/pyXZ/HEAD/environment.yml --------------------------------------------------------------------------------