Skip to content

Commit

Permalink
pre-commit changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Jul 7, 2023
1 parent 60110fc commit 361bc18
Show file tree
Hide file tree
Showing 7 changed files with 2,344 additions and 2,348 deletions.
132 changes: 66 additions & 66 deletions cmweather/__init__.py
Original file line number Diff line number Diff line change
@@ -1,66 +1,66 @@
#!/usr/bin/env python
# flake8: noqa
"""
Creating plots of Radar and Grid fields.
There are also Radar related colormaps and colorblind friendly radar
colormaps for plotting.
Available colormaps, reversed versions (_r) are also provided, these
colormaps are available within matplotlib with names 'COLORMAP':
* BlueBrown10
* BlueBrown11
* BrBu10
* BrBu12
* Bu10
* Bu7
* BuDOr12
* BuDOr18
* BuDRd12
* BuDRd18
* BuGr14
* BuGy8
* BuOr10
* BuOr12
* BuOr8
* BuOrR14
* Carbone11
* Carbone17
* Carbone42
* Cat12
* EWilson17
* GrMg16
* Gray5
* Gray9
* NWSRef
* NWSVel
* NWS_SPW
* PD17
* RRate11
* RdYlBu11b
* RefDiff
* SCook18
* StepSeq25
* SymGray12
* Theodore16
* Wild25
Colorblind friendly
* LangRainbow12
* HomeyerRainbow
* balance
* ChaseSpectral
* SpectralExtended
"""
from pkg_resources import DistributionNotFound, get_distribution

try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
_version__ = '0.0.0'

from . import cm, cm_colorblind # noqa
#!/usr/bin/env python
# flake8: noqa
"""
Creating plots of Radar and Grid fields.
There are also Radar related colormaps and colorblind friendly radar
colormaps for plotting.
Available colormaps, reversed versions (_r) are also provided, these
colormaps are available within matplotlib with names 'COLORMAP':
* BlueBrown10
* BlueBrown11
* BrBu10
* BrBu12
* Bu10
* Bu7
* BuDOr12
* BuDOr18
* BuDRd12
* BuDRd18
* BuGr14
* BuGy8
* BuOr10
* BuOr12
* BuOr8
* BuOrR14
* Carbone11
* Carbone17
* Carbone42
* Cat12
* EWilson17
* GrMg16
* Gray5
* Gray9
* NWSRef
* NWSVel
* NWS_SPW
* PD17
* RRate11
* RdYlBu11b
* RefDiff
* SCook18
* StepSeq25
* SymGray12
* Theodore16
* Wild25
Colorblind friendly
* LangRainbow12
* HomeyerRainbow
* balance
* ChaseSpectral
* SpectralExtended
"""
from pkg_resources import DistributionNotFound, get_distribution

try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
_version__ = '0.0.0'

from . import cm, cm_colorblind # noqa
Loading

0 comments on commit 361bc18

Please sign in to comment.