All Projects → blaylockbk → Pybkb_v2

blaylockbk / Pybkb_v2

Python scripts that help me be a successfull meteorologist. (Python 2) For Python 3, use: https://github.com/blaylockbk/pyBKB_v3

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pybkb v2

Darknetpy
darknetpy is a simple binding for darknet's yolo detector
Stars: ✭ 55 (-1.79%)
Mutual labels:  jupyter-notebook
Waveglow Vqvae
WaveGlow vocoder with VQVAE
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Machine Learning Projects
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Autoaugment
Unofficial implementation of the ImageNet, CIFAR 10 and SVHN Augmentation Policies learned by AutoAugment using pillow
Stars: ✭ 1,084 (+1835.71%)
Mutual labels:  jupyter-notebook
Arabic poem generator
Generating Arabic poetry using Markov chains.
Stars: ✭ 55 (-1.79%)
Mutual labels:  jupyter-notebook
Rnn Walkthrough
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Reinforcement Learning
Implementation of Reinforcement Learning algorithms in Python, based on Sutton's & Barto's Book (Ed. 2)
Stars: ✭ 55 (-1.79%)
Mutual labels:  jupyter-notebook
Baidu dogs
百度西交第三届大数据比赛Baseline(全国第4名)
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Voila Demo
Demo for voila
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Dslt
Deep Regression Tracking with Shrinkage Loss
Stars: ✭ 55 (-1.79%)
Mutual labels:  jupyter-notebook
Ds and ml projects
Data Science & Machine Learning projects and tutorials in python from beginner to advanced level.
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Julia notebooks
Julia Jupyter/Colab Notebooks
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Imagenet
Trial on kaggle imagenet object localization by yolo v3 in google cloud
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Timeseriesanalysiswithpython
Stars: ✭ 1,083 (+1833.93%)
Mutual labels:  jupyter-notebook
A Week In Wild Ai
360 view on ai/ml/dl applications
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Pyplotz
A light weight wrapper for matplotlib users with Chinese characters supported
Stars: ✭ 55 (-1.79%)
Mutual labels:  jupyter-notebook
Text Analytics W Python 2e
Source Code for 'Text Analytics with Python,' 2nd Edition by Dipanjan Sarkar
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Interpreting Decision Trees And Random Forests
Unwrapping decision trees and random forests to make them less of a black box
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Endtoend Predictive Modeling Using Python
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook
Sccaf
Single-Cell Clustering Assessment Framework
Stars: ✭ 56 (+0%)
Mutual labels:  jupyter-notebook

Balloon pyBKB_v2

Python scripts created and used by Brian K. Blaylock

Version 2: This code is being updated and cleaned up regularly, as opposed to the first version.

Directory Purpose
BB_ASN For getting data from MesoWest Above Surface Network
BB_HRRR For raw handling HRRR data
BB_MesoWest For grabbing data from the MesoWest API
BB_WRF For handling WRF output data
BB_basemap Draws various basemaps I use often
BB_cmap Various color maps
BB_data For handling various data types
BB_downloads Scripts to download various data sets or images
BB_mplstyle Matplotlib styling for publication
BB_rose Creating wind and pollution roses
BB_skewt Plotting SkewT
BB_special Special and misc. functions
BB_wx_calcs Various weather related calculations
MetPy_BB An older version of MetPy with a fix for reading TDWR data
TDWR Code for downloading and plotting TDWR data

Code Snippets, and "Convention"

Color maps

My personal color map convention and preferences. Read this article before using python colormaps: http://matplotlib.org/users/colormaps.html

Variable Code Suggested Range
Air Temperature cmap='Spectral_r'
Dew Point cmap='BrBG'
Relative Humidity cmap='BrBG' [0, 100] %
Sea Level Pressure cmap='viridis' [976, 1040] hPa
Wind Gust from BB_cmap.my_cmap import cmap_gust
cmap=cmap_gust() [0, 35] m/s
Terrain from BB_cmap.terrain_colormap import terrain_cmap_256() (mask known water points to -99)
cmap=terrain_cmap_256()
Reflectivity from MetPy_BB.plots import ctables
ctable = 'NWSReflectivity'
norm, cmap = ctables.registry.get_with_steps(ctable, -0, 5)
m.pcolormesh(x, y, ref, norm=norm, cmap=cmap)

HRRR Variable names

Commonly used HRRR variable names needed for indexing

Variable HRRR code
2 m Temperature TMP:2 m
2 m RH RH:2 m
10 m Wind Speed (max) WIND:10 m
10 m Wind Gust GUST:surface
Sea Level Pressure MSLMA:mean sea level
Topography HGT:surface
Simulated Reflectivity REFC:entire atmosphere
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].