-
Notifications
You must be signed in to change notification settings - Fork 0
/
clmdiv1.py
275 lines (239 loc) · 15.1 KB
/
clmdiv1.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#
# File:
# clmdiv1.py
#
# Synopsis:
# Draws U.S. geographic climate divisions as polygonal areas.
#
# Categories:
# maps only
# polygons
#
# Author:
# Fred Clare (based on an NCL script of Mark Stevens, CGD, NCAR)
#
# Date of initial publication:
# September, 2004
#
# Description:
# This example reads polygon data defining the U.S. geographic
# climate divisions and produces a visualization of those divisions
# colored randomly.
#
# Effects illustrated:
# o Using a Lambert conformal map projection.
# o How to select a map database resolution.
# o How to color only specified map areas.
# o How to draw color-filled polygons.
# o Usage of the the Python "random" module.
#
# Output:
# A single visualization is produced showing the
# U.S. climate divisions.
#
#
# Import numpy and random.
#
from __future__ import print_function
import numpy
import random
import os
#
# Import Nio for reading netCDF files.
#
import Nio
#
# Import Ngl support functions.
#
import Ngl
#
# Open the netCDF file containing the climate divisions polygons.
#
#dirc = Ngl.pynglpath("data")
ncdf = Nio.open_file("climdiv_polygons.nc")
#
# State names for the contiguous U.S. states.
#
statenames = ["AL","AZ","AR","CA","CO","CT","DE","FL","GA","ID","IL","IN", \
"IA","KS","KY","LA","ME","MD","MA","MI","MN","MS","MO","MT", \
"NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PA", \
"RI","SC","SD","TN","TX","UT","VT","VA","WA","WV","WI","WY"]
#
# Climate divisions in each state.
#
ncds = [8,7,9,7,5,3,
2,6,9,10,9,9,
9,9,4,9,3,8,
3,10,9,10,6,7,
8,4,2,3,8,10,
8,9,10,9,9,10,
1,7,9,4,10,7,
3,6,10,6,9,10]
#
# Number of polygons to draw.
#
npoly = len(ncds)
#
# Define a color map and open a workstation.
#
cmap = numpy.array([[1.00,1.00,1.00],
[55,126,184],
[228,26,28],
[77,175,74],
[128,128,128],
[255,255,0],
[255,0,255],
[0,255,255]],
'f')/255
''' # nu=0.01
color_exp = [1,1,1,1,1,1,1,1,
2,2,2,2,1,2,2,
2,2,2,2,1,1,1,1,1,
2,2,2,2,2,2,2,
2,2,2,2,2,
2,2,2,
2,2,
1,1,1,1,1,1,
1,1,1,1,1,1,1,1,1,
2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,
1,1,1,1,1,1,1,1,1,
2,2,2,
2,2,2,2,2,2,2,2,
2,2,2,
2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
1,1,1,1,1,1,1,1,1,1,
2,2,2,2,2,2,
2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,
2,2,2,2,
2,2,
2,2,2,
2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,
2,
2,2,2,2,1,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,
2,2,2,1,2,2,1,1,1,1,
2,2,2,2,2,2,2,
2,2,2,
2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,
2,2,2,2,2,2,2,2,2,2]
'''
# nu=0.10
# color_exp = [1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]
# nu=0.05
# color_exp = [1,1,1,1,1,1,1,1,1,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]
# nu=0.15
# color_exp = [1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,1,1,2,1,2,1,1,2,2,2,1,1,2,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]
# nu=0.20
# color_exp = [1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,1,1,2,2,2,1,1,2,2,2,2,1,2,1,1,2,2,2,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,2,1,1,2,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]
# nu=0.25
# color_exp = [1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,3,1,2,2,3,3,3,3,3,3,3,3,1,1,1,1,3,3,3,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,1,1,1,1,1,1,1,3,3,3,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,1,3,3,3,1,1,3,3,3,3,1,3,1,1,3,3,3,1,3,3,3,3,3,3,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,1,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,1,3,2,2,3,3,1,1,3,3,3,2,3,3,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,3,3,3,2,3,3,3,1,1,1,1,1,1,3,1,1,1,3,3,1,1,2,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]
# nu=0.30
# color_exp = [2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,3,2,2,2,2,3,3,3,3,3,3,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,3,2,1,1,3,3,3,3,3,3,3,3,2,2,2,2,3,3,3,1,2,1,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,3,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,3,1,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,3,3,1,2,2,3,3,1,3,2,3,2,2,3,3,3,2,3,3,3,3,3,3,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,1,1,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,3,3,2,1,1,1,3,3,1,2,1,3,3,1,1,3,1,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,3,3,3,1,3,3,3,2,2,2,2,2,2,1,2,2,1,3,3,1,2,1,2,2,2,2,1,2,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]
# nu=0.40
# color_exp = [2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,3,2,2,2,2,3,1,3,3,3,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,3,1,1,3,3,1,1,1,1,2,2,2,1,3,1,1,1,1,2,2,2,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,2,2,2,2,2,1,1,1,3,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,2,3,3,1,2,1,3,3,1,3,1,1,2,2,3,3,3,1,1,3,3,3,3,3,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,1,1,3,1,1,1,1,1,2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,3,1,1,1,1,3,1,1,1,1,3,1,1,1,3,1,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,1,3,3,3,2,2,2,1,1,2,1,1,1,1,3,3,1,1,1,1,1,1,2,1,2,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3]
# nu=0.50
# color_exp = [2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3,1,3,3,3,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,1,1,3,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,1,1,2,2,2,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,2,3,1,1,1,1,1,3,1,1,1,1,1,1,3,3,3,1,1,3,3,3,3,3,2,1,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,3]
# nu=0.60
# color_exp = [2,2,2,2,2,2,2,2,2,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,2,1,4,3,3,3,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,2,2,4,4,4,4,4,4,2,4,4,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,4,4,4,4,2,2,4,3,3,3,3,3,3,3,3,3,1,4,1,4,4,4,4,4,2,3,4,4,4,4,4,1,4,4,4,4,4,4,3,4,3,4,4,4,3,3,4,4,2,4,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,4,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,2,2,2,2,4,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3,3,3,3,3,4,1,3,3,3,3,3,3,3,3,3]
# nu=0.70
# color_exp = [2,2,2,2,2,2,2,2,1,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,4,1,4,1,1,1,2,4,4,4,3,3,4,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,1,4,1,4,4,4,4,4,4,4,4,4,4,4,1,1,1,4,4,4,4,4,4,1,1,1,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,1,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,4,1,1,1,1,1,1,4,4,4,4,4,3,3,3,3,3,3,3,4,4,4,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,4,4,4,1,1,2,4,4,3,3,4,3,3,3,3,4,4,4,4,4,4,4,4,4,2,3,4,4,1,1,4,4,4,4,4,4,1,1,4,4,3,1,4,4,3,3,4,4,1,1,1,2,2,2,1,1,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,1,1,4,4,1,1,1,1,2,1,2,2,4,4,4,4,4,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,2,2,2,2,1,1,2,2,2,2,2,2,2,2,4,1,1,4,4,4,4,3,3,4,1,1,1,1,4,1,4,4,1,4,4,4,4,1,4,1,4,1,1,4,1,4,3,3,3,3,3,3,3,3,3,4,4,4,3,3,3,3,3,3,3,3]
# nu=0.80
# color_exp = [2,2,2,2,2,2,2,2,1,6,1,1,2,2,1,1,1,2,2,2,2,2,2,2,6,1,6,1,1,1,1,3,6,3,3,3,6,6,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,1,1,6,1,6,6,3,6,6,3,3,6,6,6,1,1,1,1,3,3,3,6,1,6,1,1,1,3,4,3,3,3,3,3,3,3,3,3,3,3,6,6,3,6,1,2,1,1,1,2,2,2,2,2,2,2,2,2,4,3,6,1,1,1,1,1,1,1,6,3,6,1,4,4,4,4,3,4,4,3,3,3,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,3,6,1,1,1,2,6,3,5,3,3,4,4,3,3,3,3,3,3,3,3,6,6,6,1,4,3,6,1,1,3,3,3,3,6,3,1,1,3,3,3,1,3,3,3,4,3,3,1,1,1,1,2,1,1,1,4,4,4,4,4,4,4,4,4,3,3,3,6,6,6,6,1,1,1,6,1,1,1,1,1,1,1,2,6,1,6,3,3,1,6,6,6,3,6,6,1,6,3,3,6,6,3,1,2,2,2,2,2,2,2,4,4,4,4,3,3,4,3,3,2,1,2,2,1,1,2,2,1,2,2,2,2,2,6,1,1,6,6,3,6,4,3,3,1,1,1,1,1,1,6,1,1,6,3,3,6,6,6,1,1,1,1,6,1,6,4,4,4,4,4,4,3,3,3,3,3,3,3,3,4,4,4,3,5,5]
# nu=0.90
color_exp = [3,3,3,3,3,3,3,3,1,5,7,7,3,1,1,1,1,3,1,3,3,3,3,3,5,7,6,7,7,7,1,2,6,2,2,2,6,5,7,7,7,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,6,7,7,6,7,7,7,6,6,6,6,6,5,5,5,5,7,1,1,6,6,6,5,5,5,1,1,7,2,2,2,2,2,6,6,6,6,6,6,5,6,5,5,5,5,5,1,1,1,1,3,3,3,3,3,3,3,3,3,2,6,6,5,5,5,5,7,7,5,5,6,5,7,4,4,4,4,2,2,2,6,2,2,4,4,4,4,4,4,2,2,2,3,3,3,3,3,3,3,3,3,3,6,5,5,5,1,1,6,6,2,2,2,4,2,2,2,2,6,6,2,6,6,7,7,7,1,2,6,5,7,7,6,6,5,6,5,6,5,5,6,6,2,7,6,6,2,2,6,6,1,5,1,1,1,1,1,1,4,4,4,4,4,4,2,4,4,6,6,6,5,5,5,5,7,7,5,5,5,5,5,1,1,1,1,1,5,7,5,6,6,7,6,7,7,6,6,5,5,5,6,6,5,5,6,7,1,3,1,1,3,3,1,2,2,4,2,2,2,2,2,2,1,1,1,1,5,1,1,3,1,1,3,3,3,3,7,1,7,6,6,6,7,2,2,6,1,1,5,5,5,7,5,7,7,5,6,6,7,7,7,7,7,7,1,5,7,5,4,4,4,4,4,2,2,2,2,6,6,2,2,2,2,2,2,2,2,2]
# nu=0.95
# color_exp = [1,1,5,5,5,5,5,5,2,6,10,10,1,1,2,2,1,1,1,1,5,1,5,5,4,10,3,10,2,2,2,3,6,3,9,3,6,6,4,10,10,5,5,5,5,5,5,1,1,1,5,5,5,5,5,1,6,11,11,6,11,11,11,3,6,6,3,3,6,6,6,10,10,2,2,6,6,6,4,4,4,2,2,10,9,9,9,3,3,3,3,7,6,4,4,4,4,4,4,4,4,10,1,1,2,2,5,5,5,5,5,5,5,5,5,9,3,6,10,10,10,10,10,10,10,6,3,6,4,8,9,9,8,3,9,9,3,3,3,8,8,8,9,9,8,9,9,9,5,5,1,5,5,5,5,5,5,5,6,4,10,10,2,1,6,3,9,9,3,9,9,9,9,3,3,3,3,7,7,11,11,11,1,9,6,6,10,10,3,3,4,3,4,6,10,10,3,3,9,10,6,3,3,9,3,3,2,10,2,1,1,1,2,2,8,8,8,9,8,8,9,9,8,6,6,6,6,4,6,6,10,10,10,4,10,10,10,10,1,10,1,1,4,10,6,6,3,11,6,11,11,3,6,4,4,6,3,6,6,6,3,4,1,1,1,1,1,1,1,9,9,9,9,9,9,9,9,9,1,1,1,1,10,10,1,5,1,1,5,5,5,5,11,2,11,6,6,3,6,9,9,3,10,10,10,10,10,10,6,11,10,4,3,3,11,11,6,11,10,10,10,4,10,4,8,8,8,9,9,9,9,9,9,3,3,3,9,9,9,9,9,3,9,9]
wks_type = "png"
wks = Ngl.open_wks (wks_type,"clmdiv1")
#
# Create the plot.
#
#
# Map resources.
#
res = Ngl.Resources()
res.mpLambertParallel1F = 33.0 # two parallels
res.mpLambertParallel2F = 45.0
res.mpLambertMeridianF = -95.0 # central meridian
res.mpLimitMode = "LatLon" # limit map via lat/lon
res.mpMinLatF = 24.0 # map area
res.mpMaxLatF = 50.0 # latitudes
res.mpMinLonF = -125.0 # and
res.mpMaxLonF = -65.0 # longitudes
res.mpDataBaseVersion = "Ncarg4_1" # change database
res.mpFillOn = True # fill continents
res.mpPerimOn = False # no box around map
res.mpAreaMaskingOn = True # draw only parts of map
res.mpFillAreaSpecifiers = ["Water","Land"] # what parts to fill
res.mpSpecifiedFillColors = ["white","white"] # fill with white
res.mpOutlineBoundarySets = "USStates" # what outlines to use
res.mpMaskAreaSpecifiers = ["Conterminous US"] # don't fill here
res.mpGridAndLimbOn = False # no lat/lon lines
#
# Increase the viewport size (make the map bigger).
#
res.vpWidthF = 0.93
res.vpHeightF = 0.93
res.vpXF = 0.05
res.vpYF = 0.99
res.nglPaperWidth = 7.5
res.nglPaperHeight = 5.5
res.nglPaperMargin = 0
res.nglDraw = False # don't draw the plots now
res.nglFrame = False # or advance the frame
res.mpProjection = "LambertConformal"
plot = Ngl.map(wks,res) # create the map plot
#
# Polygon resources.
#
res_poly = Ngl.Resources()
res_poly.gsEdgesOn = True # draw border around polygons.
res_poly.gsEdgeColor = "white"
res_poly.gsEdgeThicknessF = 1.5
#
# Prepare to draw the polygons.
#
random.seed(10) # set a seed for the random number generator
#
# Get the polygon data and fill polygons with random colors in
# the range of our color table (2-31).
#
t = 0
for st in range(npoly):
for cd in range(ncds[st]):
res_poly.gsFillColor = cmap[color_exp[t],:]
t += 1
varstr = "{}_CD{}".format(statenames[st], cd + 1)
x = ncdf.variables[varstr].lon
y = ncdf.variables[varstr].lat
Ngl.polygon (wks,plot,x,y,res_poly)
del(varstr)
del(x)
del(y)
#
# Add a title.
#
res_txt = Ngl.Resources() # text resources
res_txt.txFontHeightF = 0.03 # select font size
res_txt.txFont = "helvetica-bold" # font
# Ngl.text_ndc (wks, "Climate Division Polygons", 0.5, 0.78, res_txt)
Ngl.frame(wks)
Ngl.end()