File tree Expand file tree Collapse file tree 1 file changed +14
-17
lines changed Expand file tree Collapse file tree 1 file changed +14
-17
lines changed Original file line number Diff line number Diff line change 1
- import numpy as np
2
- #np.seterr("raise")
1
+ import matplotlib .pyplot as plt
3
2
4
- from pylab import *
3
+ plt .subplot (221 , projection = "aitoff" )
4
+ plt .title ("Aitoff" )
5
+ plt .grid (True )
5
6
6
- subplot (221 , projection = "aitoff " )
7
- title ("Aitoff " )
8
- grid (True )
7
+ plt . subplot (222 , projection = "hammer " )
8
+ plt . title ("Hammer " )
9
+ plt . grid (True )
9
10
10
- subplot (222 , projection = "hammer " )
11
- title ("Hammer " )
12
- grid (True )
11
+ plt . subplot (223 , projection = "lambert " )
12
+ plt . title ("Lambert " )
13
+ plt . grid (True )
13
14
14
- subplot (223 , projection = "lambert " )
15
- title ("Lambert " )
16
- grid (True )
15
+ plt . subplot (224 , projection = "mollweide " )
16
+ plt . title ("Mollweide " )
17
+ plt . grid (True )
17
18
18
- subplot (224 , projection = "mollweide" )
19
- title ("Mollweide" )
20
- grid (True )
21
-
22
- show ()
19
+ plt .show ()
You can’t perform that action at this time.
0 commit comments