Python library for my meteorological research
https://kwonil-kim.github.io/kkpy/
- Replace
${env_name}
to the name of the conda environment you want
conda create -n ${env_name} python=3.8
conda activate ${env_name}
conda install -c conda-forge cartopy arm_pyart gdal numba
- Or you can just install in the existing environment (make sure you have a proper version of python)
conda activate ${env_name}
conda install -c conda-forge cartopy arm_pyart gdal numba
- Install released version (stable)
pip install kkpy
- Or latest version (unstable)
pip install git+https://github.com/Kwonil-Kim/kkpy
# released version
pip install --upgrade kkpy
# latest version
pip install --upgrade git+https://github.com/Kwonil-Kim/kkpy
- cm:
load_rdr_colorbar
- io: Add
**kwargs_read_csv
option inread_aws
- io: Fix to read dbz and vt when kind=debug in
_read_wissdom_KMAbin
- util: Fix hard-coded format string in
stats
- util: Fix to support pandas series with different indices in
stats
- io:
read_r3d
- cm: Fix for matplotlib error concerning duplicated cmap registration
- io: Fix for zero-sized candidate in
get_fname
- io: Add read_d3d
- util: get_intersect
- io: Fix support for a new KMA sounding format
- Update test for
read_sounding
- io: Add support for a new KMA sounding format
- io: Prevent print during get_fname and fix typo
- io:
read_2dvd
,read_wxt520
- io:
read_vertix
,read_vet
,read_hsr
,read_sounding
,read_lidar_wind
,read_wpr_kma
, andread_pluvio_raw
- Add tests for io functions
- plot: Add lognorm in
density2d
- io: Fix missing import in
read_wissdom
- io: Fix when ndarray is given for
read_wissdom
- util: Fix if dbz=True in
to_lower_resolution
- plot: Fix transposed result for
density2d
- plot: Add
vmin
,vmax
indensity2d
- io: Fix missing import in
read_wissdom
- util: Fix docstring typo for
to_lower_resolution
- io:
read_wissdom
- cm:
wind
- util:
to_lower_resolution
- util: Fix unit conversion bug in
wind2uv
- io: Fix wradlib warning in
read_dem
- plot:
density2d
- plot: Fix zunit and include/exclude sites in
icepop_sites
- plot: Add grid options in
scatter
- util: Fix wrong MHS location in
icepop_sites
- util: Fix
stats
to address NaN for highest N values - util: Fix docstring typos in
stats
andderivative
- io: Fix example of
read_dem
- io:
get_fname
- util:
derivative
- util:
summary
- plot: Fix docstring of
icepop_sites
- Resolve deprecation warnings from
np.int
,np.float
- util:
proj_icepop
,icepop_extent
- util:
stats
- plot:
icepop_sites
- plot:
cartopy_grid
andtickint
- plot:
scatter
- util:
calc_dsdmoments
- util:
vel_atlas
- util:
icepop_sites
andicepop_events
- cm: Fix
precip
andprecip_kma
to better represent 0.0 mm/hr
- cm: Fix
precip_kma_aws
to better represent 0.0 mm/hr
- Version 0.2.1 went wrong when uploading to PyPI. This is just the redistribution of the version 0.2.1.
- cm: Fix wrong KMA cmaps
- util:
dbzmean
- util:
reduce_func
incross_section_2d
- cm: KMA cmap
- Initial public release