基本信息
源码名称:pyart:Python-ARM雷达工具包。 由数据模型驱动的交互式工具包,用于处理天气雷达数据-源码
源码大小:10.72M
文件格式:.zip
开发语言:Python
更新时间:2023-11-07
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
pyart:Python-ARM雷达工具包。 由数据模型驱动的交互式工具包,用于处理天气雷达数据

.
├── pyart-master
│   ├── INSTALL.rst
│   ├── LICENSE.txt
│   ├── MANIFEST.in
│   ├── README.rst
│   ├── appveyor.yml
│   ├── conda_recipe
│   │   ├── build.sh
│   │   └── meta.yaml
│   ├── continuous_integration
│   │   ├── appveyor
│   │   │   └── run_with_env.cmd
│   │   ├── build_docs.sh
│   │   ├── environment-3.6.yml
│   │   ├── environment-3.7.yml
│   │   ├── environment-3.8.yml
│   │   └── install.sh
│   ├── doc
│   │   ├── Makefile
│   │   ├── make.bat
│   │   ├── rebuild_docs.sh
│   │   ├── rebuild_examples.sh
│   │   ├── rebuild_full_docs.sh
│   │   └── source
│   │       ├── API
│   │       │   └── index.rst
│   │       ├── INSTALL.rst
│   │       ├── _static
│   │       │   ├── ppi.png
│   │       │   └── rhi.png
│   │       ├── _templates
│   │       │   ├── autosummary
│   │       │   │   ├── base.rst
│   │       │   │   ├── class.rst
│   │       │   │   └── module.rst
│   │       │   └── dev_template.rst
│   │       ├── conf.py
│   │       ├── contributors_guide.rst
│   │       ├── index.rst
│   │       ├── notebooks
│   │       │   ├── basic_ingest_using_test_radar_object.ipynb
│   │       │   ├── changing_fields_and_saving.ipynb
│   │       │   ├── dealiasing_velocity.ipynb
│   │       │   ├── differential_phase_proceesing_using_LP_methods.ipynb
│   │       │   ├── mapping_data_to_a_cartesian_grid.ipynb
│   │       │   ├── masking_data_with_gatefilters.ipynb
│   │       │   └── the_pyart_radar_object_and_indexing.ipynb
│   │       └── setting_up_an_environment.rst
│   ├── environment.yml
│   ├── examples
│   │   ├── README.txt
│   │   ├── correct
│   │   │   ├── README.txt
│   │   │   ├── plot_attenuation.py
│   │   │   ├── plot_dealias.py
│   │   │   └── plot_lp_phase_proc.py
│   │   ├── mapping
│   │   │   ├── README.txt
│   │   │   ├── plot_map_one_radar_to_grid.py
│   │   │   └── plot_map_two_radars_to_grid.py
│   │   └── plotting
│   │       ├── README.txt
│   │       ├── plot_nexrad_multiple_moments.py
│   │       ├── plot_nexrad_reflectivity.py
│   │       ├── plot_ppi_mdv.py
│   │       ├── plot_ppi_sigmet.py
│   │       ├── plot_ppi_with_rings.py
│   │       ├── plot_rhi_cfradial.py
│   │       ├── plot_rhi_contours_differential_reflectivity.py
│   │       ├── plot_rhi_data_overlay.py
│   │       ├── plot_rhi_mdv.py
│   │       ├── plot_rhi_sigmet.py
│   │       ├── plot_rhi_two_panel.py
│   │       ├── plot_three_panel_gridmapdisplay.py
│   │       └── plot_xsect.py
│   ├── guides
│   │   ├── CI_SETUP.rst
│   │   ├── HOWTO_RELEASE.rst
│   │   ├── contributors_guide.rst
│   │   ├── pyart_cheatsheet.pdf
│   │   ├── pyart_cheatsheet.tex
│   │   └── setting_up_an_environment.rst
│   ├── pyart
│   │   ├── __check_build
│   │   │   ├── README
│   │   │   ├── __init__.py
│   │   │   ├── _check_build.c
│   │   │   ├── _check_build.pyx
│   │   │   └── setup.py
│   │   ├── __init__.py
│   │   ├── _debug_info.py
│   │   ├── aux_io
│   │   │   ├── __init__.py
│   │   │   ├── arm_vpt.py
│   │   │   ├── d3r_gcpex_nc.py
│   │   │   ├── edge_netcdf.py
│   │   │   ├── gamic_hdf5.py
│   │   │   ├── gamicfile.py
│   │   │   ├── kazr_spectra.py
│   │   │   ├── noxp_iphex_nc.py
│   │   │   ├── odim_h5.py
│   │   │   ├── pattern.py
│   │   │   ├── radx.py
│   │   │   ├── rainbow_wrl.py
│   │   │   ├── setup.py
│   │   │   └── sinarame_h5.py
│   │   ├── bridge
│   │   │   ├── __init__.py
│   │   │   ├── setup.py
│   │   │   ├── tests
│   │   │   │   └── test_wradlib_bridge.py
│   │   │   └── wradlib_bridge.py
│   │   ├── config.py
│   │   ├── core
│   │   │   ├── __init__.py
│   │   │   ├── grid.py
│   │   │   ├── radar.py
│   │   │   ├── radar_spectra.py
│   │   │   ├── setup.py
│   │   │   ├── tests
│   │   │   │   ├── test_grid.py
│   │   │   │   ├── test_radar.py
│   │   │   │   ├── test_radar_spectra.py
│   │   │   │   ├── test_transforms.py
│   │   │   │   └── test_wind_profile.py
│   │   │   ├── transforms.py
│   │   │   └── wind_profile.py
│   │   ├── correct
│   │   │   ├── __init__.py
│   │   │   ├── _common_dealias.py
│   │   │   ├── _fast_edge_finder.c
│   │   │   ├── _fast_edge_finder.pyx
│   │   │   ├── _fourdd_h.pxd
│   │   │   ├── _fourdd_interface.c
│   │   │   ├── _fourdd_interface.pyx
│   │   │   ├── _unwrap_1d.c
│   │   │   ├── _unwrap_1d.pyx
│   │   │   ├── _unwrap_2d.c
│   │   │   ├── _unwrap_2d.pyx
│   │   │   ├── _unwrap_3d.c
│   │   │   ├── _unwrap_3d.pyx
│   │   │   ├── attenuation.py
│   │   │   ├── bias_and_noise.py
│   │   │   ├── dealias.py
│   │   │   ├── despeckle.py
│   │   │   ├── phase_proc.py
│   │   │   ├── rebuild_fast_edge_finder.sh
│   │   │   ├── rebuild_fourdd_interface.sh
│   │   │   ├── region_dealias.py
│   │   │   ├── setup.py
│   │   │   ├── src
│   │   │   │   ├── UWASHINGTON_4DD_README
│   │   │   │   ├── dealias_fourdd.c
│   │   │   │   ├── dealias_fourdd.h
│   │   │   │   ├── helpers.c
│   │   │   │   ├── helpers.h
│   │   │   │   ├── sounding_to_volume.c
│   │   │   │   └── sounding_to_volume.h
│   │   │   ├── tests
│   │   │   │   ├── attenuation_rays.npz
│   │   │   │   ├── attenuation_rays_philinear.npz
│   │   │   │   ├── attenuation_rays_zphi.npz
│   │   │   │   ├── reference_ray_plot.png
│   │   │   │   ├── reference_rays.npz
│   │   │   │   ├── test_attenuation.py
│   │   │   │   ├── test_dealias.py
│   │   │   │   ├── test_phase_proc.py
│   │   │   │   ├── test_region_dealias.py
│   │   │   │   └── test_unwrap.py
│   │   │   ├── unwrap.py
│   │   │   ├── unwrap_2d_ljmu.c
│   │   │   └── unwrap_3d_ljmu.c
│   │   ├── default_config.py
│   │   ├── exceptions.py
│   │   ├── filters
│   │   │   ├── __init__.py
│   │   │   ├── gatefilter.py
│   │   │   ├── setup.py
│   │   │   └── tests
│   │   │       └── test_gatefilter.py
│   │   ├── graph
│   │   │   ├── __init__.py
│   │   │   ├── _cm.py
│   │   │   ├── _cm_colorblind.py
│   │   │   ├── balance-rgb.txt
│   │   │   ├── cm.py
│   │   │   ├── cm_colorblind.py
│   │   │   ├── common.py
│   │   │   ├── gridmapdisplay.py
│   │   │   ├── gridmapdisplay_basemap.py
│   │   │   ├── radardisplay.py
│   │   │   ├── radardisplay_airborne.py
│   │   │   ├── radarmapdisplay.py
│   │   │   ├── radarmapdisplay_basemap.py
│   │   │   ├── setup.py
│   │   │   └── tests
│   │   │       ├── test_cm.py
│   │   │       ├── test_cm_colorblind.py
│   │   │       ├── test_common.py
│   │   │       ├── test_gridmapdisplay.py
│   │   │       ├── test_gridmapdisplay_basemap.py
│   │   │       ├── test_radardisplay.py
│   │   │       ├── test_radarmapdisplay.py
│   │   │       └── test_radarmapdisplay_basemap.py
│   │   ├── io
│   │   │   ├── __init__.py
│   │   │   ├── _rsl_h.pxd
│   │   │   ├── _rsl_interface.c
│   │   │   ├── _rsl_interface.pxd
│   │   │   ├── _rsl_interface.pyx
│   │   │   ├── _sigmet_noaa_hh.py
│   │   │   ├── _sigmetfile.c
│   │   │   ├── _sigmetfile.pyx
│   │   │   ├── arm_sonde.py
│   │   │   ├── auto_read.py
│   │   │   ├── cfradial.py
│   │   │   ├── chl.py
│   │   │   ├── common.py
│   │   │   ├── grid_io.py
│   │   │   ├── mdv_common.py
│   │   │   ├── mdv_grid.py
│   │   │   ├── mdv_radar.py
│   │   │   ├── nexrad_archive.py
│   │   │   ├── nexrad_cdm.py
│   │   │   ├── nexrad_common.py
│   │   │   ├── nexrad_interpolate.c
│   │   │   ├── nexrad_interpolate.pyx
│   │   │   ├── nexrad_level2.py
│   │   │   ├── nexrad_level3.py
│   │   │   ├── nexradl3_read.py
│   │   │   ├── output_to_geotiff.py
│   │   │   ├── rebuild_rsl_interface.sh
│   │   │   ├── rebuild_sigmetfile.sh
│   │   │   ├── rsl.py
│   │   │   ├── setup.py
│   │   │   ├── sigmet.py
│   │   │   ├── tests
│   │   │   │   ├── test_arm_sonde.py
│   │   │   │   ├── test_auto_read.py
│   │   │   │   ├── test_cfradial.py
│   │   │   │   ├── test_chl.py
│   │   │   │   ├── test_grid_io.py
│   │   │   │   ├── test_mdv_common.py
│   │   │   │   ├── test_mdv_grid.py
│   │   │   │   ├── test_mdv_radar.py
│   │   │   │   ├── test_nexrad_archive_msg1.py
│   │   │   │   ├── test_nexrad_archive_msg31.py
│   │   │   │   ├── test_nexrad_cdm.py
│   │   │   │   ├── test_nexrad_level2.py
│   │   │   │   ├── test_nexrad_level3.py
│   │   │   │   ├── test_output_to_geotiff.py
│   │   │   │   ├── test_rsl.py
│   │   │   │   ├── test_sigmet.py
│   │   │   │   ├── test_uf.py
│   │   │   │   └── test_uf_write.py
│   │   │   ├── uf.py
│   │   │   ├── uf_write.py
│   │   │   └── uffile.py
│   │   ├── lazydict.py
│   │   ├── map
│   │   │   ├── __init__.py
│   │   │   ├── _gate_to_grid_map.c
│   │   │   ├── _gate_to_grid_map.pyx
│   │   │   ├── _load_nn_field_data.c
│   │   │   ├── _load_nn_field_data.pyx
│   │   │   ├── ckdtree.c
│   │   │   ├── ckdtree.pyx
│   │   │   ├── gates_to_grid.py
│   │   │   ├── grid_mapper.py
│   │   │   ├── rebuild_ball_tree.sh
│   │   │   ├── rebuild_ckdtree.sh
│   │   │   ├── rebuild_gate_to_grid_map.sh
│   │   │   ├── rebuild_load_nn_field_data.sh
│   │   │   ├── setup.py
│   │   │   └── tests
│   │   │       ├── test_gates_to_grid.py
│   │   │       └── test_grid_mapper.py
│   │   ├── retrieve
│   │   │   ├── __init__.py
│   │   │   ├── _echo_class.py
│   │   │   ├── _kdp_proc.c
│   │   │   ├── _kdp_proc.pyx
│   │   │   ├── advection.py
│   │   │   ├── convv.py
│   │   │   ├── echo_class.py
│   │   │   ├── gate_id.py
│   │   │   ├── kdp_proc.py
│   │   │   ├── qpe.py
│   │   │   ├── qvp.py
│   │   │   ├── rebuild_kdp_proc.sh
│   │   │   ├── setup.py
│   │   │   ├── simple_moment_calculations.py
│   │   │   ├── spectra_calculations.py
│   │   │   ├── tests
│   │   │   │   ├── compare_kdp_proc.py
│   │   │   │   ├── test_advection.py
│   │   │   │   ├── test_echo_class.py
│   │   │   │   ├── test_gate_id.py
│   │   │   │   ├── test_kdp_proc.py
│   │   │   │   ├── test_qvp.py
│   │   │   │   ├── test_simple_moment_calculations.py
│   │   │   │   ├── test_spectra_calculations.py
│   │   │   │   └── test_vad.py
│   │   │   └── vad.py
│   │   ├── setup.py
│   │   ├── testing
│   │   │   ├── __init__.py
│   │   │   ├── data
│   │   │   │   ├── README
│   │   │   │   ├── baseline_figures
│   │   │   │   │   ├── example_cfradial_cr_raster.png
│   │   │   │   │   ├── example_cfradial_ppi.png
│   │   │   │   │   ├── example_cfradial_rhi.png
│   │   │   │   │   ├── example_mdv_ppi.png
│   │   │   │   │   ├── example_mdv_rhi.png
│   │   │   │   │   ├── example_sigmet_ppi.png
│   │   │   │   │   └── example_sigmet_rhi.png
│   │   │   │   ├── check_nexrad_dummy.py
│   │   │   │   ├── dummify_nexrad_file.py
│   │   │   │   ├── example_arm_sonde.cdf
│   │   │   │   ├── example_cfradial_cr_raster.nc
│   │   │   │   ├── example_cfradial_ppi.nc
│   │   │   │   ├── example_cfradial_rhi.nc
│   │   │   │   ├── example_chl_rhi.chl
│   │   │   │   ├── example_interpolatedsonde.cdf
│   │   │   │   ├── example_mdv_grid.mdv
│   │   │   │   ├── example_mdv_ppi.mdv
│   │   │   │   ├── example_mdv_rhi.mdv
│   │   │   │   ├── example_nexrad_archive_msg1.bz2
│   │   │   │   ├── example_nexrad_archive_msg31.bz2
│   │   │   │   ├── example_nexrad_archive_msg31_compressed.ar2v
│   │   │   │   ├── example_nexrad_cdm.bz2
│   │   │   │   ├── example_nexrad_level3_msg163
│   │   │   │   ├── example_nexrad_level3_msg176
│   │   │   │   ├── example_nexrad_level3_msg19
│   │   │   │   ├── example_rays.npz
│   │   │   │   ├── example_sigmet_ppi.sigmet
│   │   │   │   ├── example_sigmet_rhi.sigmet
│   │   │   │   ├── example_uf_ppi.uf
│   │   │   │   ├── make_single_ray.py
│   │   │   │   ├── make_small_arm_sonde.sh
│   │   │   │   ├── make_small_cfradial_ppi.py
│   │   │   │   ├── make_small_cfradial_rhi.py
│   │   │   │   ├── make_small_chl_rhi.py
│   │   │   │   ├── make_small_interp_sonde.py
│   │   │   │   ├── make_small_mdv_grid.py
│   │   │   │   ├── make_small_mdv_ppi.py
│   │   │   │   ├── make_small_mdv_rhi.py
│   │   │   │   ├── make_small_nexrad_archive_msg1.sh
│   │   │   │   ├── make_small_nexrad_archive_msg31.sh
│   │   │   │   ├── make_small_nexrad_archive_msg31_compressed.py
│   │   │   │   ├── make_small_nexrad_cdm.sh
│   │   │   │   ├── make_small_sigmet_ppi.py
│   │   │   │   ├── make_small_sigmet_rhi.py
│   │   │   │   ├── make_small_uf.sh
│   │   │   │   ├── quick_plot_cfradial_ppi.py
│   │   │   │   ├── quick_plot_cfradial_rhi.py
│   │   │   │   ├── quick_plot_mdv_ppi.py
│   │   │   │   ├── quick_plot_mdv_rhi.py
│   │   │   │   ├── quick_plot_sigmet_ppi.py
│   │   │   │   └── quick_plot_sigmet_rhi.py
│   │   │   ├── sample_files.py
│   │   │   ├── sample_objects.py
│   │   │   ├── setup.py
│   │   │   └── tmpdirs.py
│   │   ├── tests
│   │   │   ├── custom_config.py
│   │   │   ├── test_config.py
│   │   │   └── test_debug_info.py
│   │   └── util
│   │       ├── __init__.py
│   │       ├── circular_stats.py
│   │       ├── datetime_utils.py
│   │       ├── hildebrand_sekhon.py
│   │       ├── met.py
│   │       ├── radar_utils.py
│   │       ├── setup.py
│   │       ├── sigmath.py
│   │       ├── simulated_vel.py
│   │       ├── tests
│   │       │   ├── test_circular_stats.py
│   │       │   ├── test_hildebrand_sekhon.py
│   │       │   ├── test_radar_utils.py
│   │       │   ├── test_simulated_vel.py
│   │       │   └── test_xsect.py
│   │       └── xsect.py
│   ├── scripts
│   │   ├── anytocfradial
│   │   ├── check_cfradial
│   │   ├── convert_legacy_grid
│   │   ├── radar_info
│   │   └── radar_plot
│   ├── setup.cfg
│   └── setup.py
└── pyart:Python-ARM雷达工具包。 由数据模型驱动的交互式工具包,用于处理天气雷达数据-源码_pyart-master.zip

43 directories, 352 files