-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
52 lines (34 loc) · 1.72 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
###################################################################################################
# EASY APLPY #
###################################################################################################
"""
These functions will produce plots of channel maps, moment maps,
pV diagrams, ... in a quality that (hopefully) allows publishing.
"""
###################################################################################################
# import modules
################
from . import helpers
from . import plot
from . import settings
from . import custom_colormaps
###################################################################################################
# set default settings
######################
helpers.hide_deprecationWarnings()
helpers.hide_nonfunctionalWarnings()
helpers.hide_FITSwarnings()
helpers.hide_ComparisonWarnings()
###################################################################################################
# warn that APLpy is a mess
###########################
import aplpy
if aplpy.version.major!=1:
print("\x1b[0;31;40m"+"easy_aplpy only partially works with APLpy 2 and the old APLpy 0 version. Some functionality will raise unsolvable errors."+"\x1b[0m")
# if aplpy.version.version=='1.1.1':
# print("\x1b[0;31;40m"+"APLpy 1.1.1 has problems plotting the beam but newer and older version have even more serious bugs."+"\x1b[0m")
###################################################################################################
# easy_aplpy version
####################
version = '0.2'
###################################################################################################