-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
2,344 additions
and
2,348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.