|
56 | 56 | # ============ |
57 | 57 | # Top left |
58 | 58 | fig.basemap( |
59 | | - # Set map limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
| 59 | + # Set plot limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
60 | 60 | region=[0, 360, 0, 1], |
61 | | - # Set map width to 5 cm |
| 61 | + # Set plot width to 5 cm |
62 | 62 | projection="P5c", |
63 | 63 | # Set the frame and title; @^ allows for a line break within the title |
64 | 64 | frame=["xa45f", "+gbisque+tprojection='P5c' @^ region=[0, 360, 0, 1]"], |
|
69 | 69 | # ============ |
70 | 70 | # Top middle |
71 | 71 | fig.basemap( |
72 | | - # Set map limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
| 72 | + # Set plot limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
73 | 73 | region=[0, 360, 0, 1], |
74 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 74 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
75 | 75 | # standard angle |
76 | 76 | projection="P5c+a", |
77 | 77 | # Set the frame and title; @^ allows for a line break within the title |
|
83 | 83 | # ============ |
84 | 84 | # Top right |
85 | 85 | fig.basemap( |
86 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
| 86 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
87 | 87 | region=[0, 90, 0, 1], |
88 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 88 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
89 | 89 | # standard angle |
90 | 90 | projection="P5c+a", |
91 | 91 | # Set the frame and title; @^ allows for a line break within the title |
|
97 | 97 | # ============ |
98 | 98 | # Bottom left |
99 | 99 | fig.basemap( |
100 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
| 100 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
101 | 101 | region=[0, 90, 0, 1], |
102 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 102 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
103 | 103 | # standard angle, rotate coordinate system counterclockwise by 45 degrees |
104 | 104 | projection="P5c+a+t45", |
105 | 105 | # Set the frame and title; @^ allows for a line break within the title |
|
115 | 115 | # ============ |
116 | 116 | # Bottom middle |
117 | 117 | fig.basemap( |
118 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
| 118 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
119 | 119 | # radius_max = 6371 (Earth's radius) |
120 | 120 | region=[0, 90, 3480, 6371], |
121 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 121 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
122 | 122 | # standard angle, rotate coordinate system counterclockwise by 45 degrees |
123 | 123 | projection="P5c+a+t45", |
124 | 124 | # Set the frame, and title; @^ allows for a line break within the title |
|
134 | 134 | # ============ |
135 | 135 | # Bottom right |
136 | 136 | fig.basemap( |
137 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
| 137 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
138 | 138 | # radius_max = 6371 (Earth's radius) |
139 | 139 | region=[0, 90, 3480, 6371], |
140 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 140 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
141 | 141 | # standard angle, rotate coordinate system counterclockwise by 45 degrees, r-axis |
142 | 142 | # is marked as depth |
143 | 143 | projection="P5c+a+t45+z", |
|
0 commit comments