|
57 | 57 | # ============ |
58 | 58 | # Top left |
59 | 59 | fig.basemap( |
60 | | - # Set map limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
| 60 | + # Set plot limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
61 | 61 | region=[0, 360, 0, 1], |
62 | | - # Set map width to 5 cm |
| 62 | + # Set plot width to 5 cm |
63 | 63 | projection="P5c", |
64 | 64 | # Set the frame and title; @^ allows for a line break within the title |
65 | 65 | frame=Frame( |
|
74 | 74 | # ============ |
75 | 75 | # Top middle |
76 | 76 | fig.basemap( |
77 | | - # Set map limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
| 77 | + # Set plot limits to theta_min = 0, theta_max = 360, radius_min = 0, radius_max = 1 |
78 | 78 | region=[0, 360, 0, 1], |
79 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 79 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
80 | 80 | # standard angle |
81 | 81 | projection="P5c+a", |
82 | 82 | # Set the frame and title; @^ allows for a line break within the title |
|
92 | 92 | # ============ |
93 | 93 | # Top right |
94 | 94 | fig.basemap( |
95 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
| 95 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
96 | 96 | region=[0, 90, 0, 1], |
97 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 97 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
98 | 98 | # standard angle |
99 | 99 | projection="P5c+a", |
100 | 100 | # Set the frame and title; @^ allows for a line break within the title |
|
112 | 112 | # ============ |
113 | 113 | # Bottom left |
114 | 114 | fig.basemap( |
115 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
| 115 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 0, radius_max = 1 |
116 | 116 | region=[0, 90, 0, 1], |
117 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 117 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
118 | 118 | # standard angle, rotate coordinate system counterclockwise by 45 degrees |
119 | 119 | projection="P5c+a+t45", |
120 | 120 | # Set the frame and title; @^ allows for a line break within the title |
|
132 | 132 | # ============ |
133 | 133 | # Bottom middle |
134 | 134 | fig.basemap( |
135 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
| 135 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
136 | 136 | # radius_max = 6371 (Earth's radius) |
137 | 137 | region=[0, 90, 3480, 6371], |
138 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 138 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
139 | 139 | # standard angle, rotate coordinate system counterclockwise by 45 degrees |
140 | 140 | projection="P5c+a+t45", |
141 | 141 | # Set the frame, and title; @^ allows for a line break within the title |
|
153 | 153 | # ============ |
154 | 154 | # Bottom right |
155 | 155 | fig.basemap( |
156 | | - # Set map limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
| 156 | + # Set plot limits to theta_min = 0, theta_max = 90, radius_min = 3480, |
157 | 157 | # radius_max = 6371 (Earth's radius) |
158 | 158 | region=[0, 90, 3480, 6371], |
159 | | - # Set map width to 5 cm and interpret input data as geographic azimuth instead of |
| 159 | + # Set plot width to 5 cm and interpret input data as geographic azimuth instead of |
160 | 160 | # standard angle, rotate coordinate system counterclockwise by 45 degrees, r-axis |
161 | 161 | # is marked as depth |
162 | 162 | projection="P5c+a+t45+z", |
|
0 commit comments