forked from jbeezley/WRF-GoogleEarth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ncEarth.py
executable file
·641 lines (546 loc) · 20.3 KB
/
ncEarth.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
#!/usr/bin/env python
'''
A simple python module for creating images out of netcdf arrays and outputing
kml files for Google Earth. The base class ncEarth cannot be used on its own,
it must be subclassed with certain functions overloaded to provide location and
plotting that are specific to a model's output files.
Requires matplotlib and netCDF4 python modules.
Use as follows:
import ncEarth
kml=ncEarth.ncEpiSim('episim_0010.nc')
kml.write_kml(['Susceptible','Infected','Recovered','Dead'])
or
kmz=ncEarth.ncWRFFire_mov('wrfout')
kmz.write('FGRNHFX','fire.kmz')
Author: Jonathan Beezley ([email protected])
Date: Oct 5, 2010
kmz=ncEarth.ncWRFFire_mov('wrfout')
kmz.write_preload('FGRNHFX')
Modified by Lin Zhang
Date: Dec 20, 2010
'''
import matplotlib
try:
matplotlib.use('Agg')
except:
pass
from matplotlib import pylab
from matplotlib.colorbar import ColorbarBase
from matplotlib.colors import LogNorm,Normalize
from matplotlib.ticker import LogFormatter
import numpy as np
try:
from netCDF4 import Dataset
except:
from Scientific.IO.NetCDF import NetCDFFile as Dataset
import cStringIO
from datetime import datetime
import zipfile
import shutil,os
import warnings
import threading
try:
ncpu=max(1,os.sysconf('SC_NPROCESSORS_ONLN'))
except:
ncpu=2
warnings.simplefilter('ignore')
global dlock
global lock
global queue
global minmax
global ncfile
minmax={}
lock=threading.RLock()
dlock=threading.RLock()
queue=threading.Semaphore(ncpu)
ncfile={}
class ZeroArray(Exception):
pass
class ncEarth(object):
'''Base class for reading NetCDF files and writing kml for Google Earth.'''
kmlname='ncEarth.kml' # default name for kml output file
progname='baseClass' # string describing the model (overload in subclass)
# base kml file format string
# creates a folder containing all images
kmlstr= \
'''<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Folder>
<name>%(prog)s visualization</name>
<description>Variables from %(prog)s output files visualized in Google Earth</description>
%(content)s
</Folder>
</kml>'''
# string for static Ground Overlays
kmlimageStatic= \
'''<GroundOverlay>
<name>%(name)s</name>
<color>00ffffff</color>
<Icon>
<href>%(filename)s</href>
<viewBoundScale>0.75</viewBoundScale>
</Icon>
<altitude>0.0</altitude>
<altitudeMode>clampToGround</altitudeMode>
<LatLonBox>
<north>%(lat2)f</north>
<south>%(lat1)f</south>
<east>%(lon2)f</east>
<west>%(lon1)f</west>
<rotation>0.0</rotation>
</LatLonBox>
</GroundOverlay>'''
# format string for each image
kmlimage= \
'''<GroundOverlay>
<name>%(name)s</name>
<color>%(alpha)02xffffff</color>
<Icon>
<href>%(filename)s</href>
<viewBoundScale>0.75</viewBoundScale>
</Icon>
<altitude>0.0</altitude>
<altitudeMode>clampToGround</altitudeMode>
<LatLonBox>
<north>%(lat2)f</north>
<south>%(lat1)f</south>
<east>%(lon2)f</east>
<west>%(lon1)f</west>
<rotation>0.0</rotation>
</LatLonBox>
%(time)s
</GroundOverlay>'''
kmlcolorbar= \
'''
<ScreenOverlay>
<name>%(name)s colorbar</name>
<color>ffffffff</color>
<Icon>
<href>%(file)s</href>
</Icon>
<overlayXY x=".15" y=".5" xunits="fraction" yunits="fraction"/>
<screenXY x="0" y=".5" xunits="fraction" yunits="fraction"/>
<rotationXY x="0" y="0" xunits="fraction" yunits="fraction"/>
<size x="0" y=".75" xunits="fraction" yunits="fraction"/>
</ScreenOverlay>
'''
# time interval specification for animated output
timestr=\
'''<TimeSpan>
%(begin)s
%(end)s
</TimeSpan>'''
beginstr='<begin>%s</begin>'
endstr='<end>%s</end>'
def __init__(self,filename,hsize=5):
'''Class constructor:
filename : string NetCDF file to read
hsize : optional, width of output images in inches'''
global ncfile
global lock
with lock:
if not ncfile.has_key(filename):
ncfile[filename]=Dataset(filename,'r')
self.f=ncfile[filename]
self.hsize=hsize
def get_minmax(self,vname):
global minmax
with lock:
if minmax.has_key(vname):
mm=minmax[vname]
else:
mm=self.compute_minmax(vname)
minmax[vname]=mm
return mm
def compute_minmax(self,vname):
v=self.f.variables[vname][:]
return (v.min(),v.max())
def get_bounds(self):
'''Return the latitude and longitude bounds of the image. Must be provided
by the subclass.'''
raise Exception("Non-implemented base class method.")
def get_array(self,vname):
'''Return a given array from the output file. Must be returned as a
2D array with top to bottom orientation (like an image).'''
v=self.f.variables[vname]
v=pylab.flipud(v)
return v
def view_function(self,v):
'''Any function applied to the image data before plotting. For example,
to show the color on a log scale.'''
return v
def get_image(self,v,min,max):
'''Create an image from a given data. Returns a png image as a string.'''
# kludge to get the image to have no border
fig=pylab.figure(figsize=(self.hsize,self.hsize*float(v.shape[0])/v.shape[1]))
ax=fig.add_axes([0,0,1,1])
cmap=pylab.cm.jet
cmap.set_bad('w',0.)
norm=self.get_norm(min,max)
ax.imshow(self.view_function(v),cmap=cmap,norm=norm)
ax.axis('off')
self.process_image()
# create a string buffer to save the file
im=cStringIO.StringIO()
fig.savefig(im,format='png',transparent=True)
pylab.close(fig)
# return the buffer
s=im.getvalue()
im.close()
return s
def get_colorbar(self,title,label,min,max):
'''Create a colorbar from given data. Returns a png image as a string.'''
fig=pylab.figure(figsize=(2,5))
ax=fig.add_axes([0.35,0.03,0.1,0.9])
norm=self.get_norm(min,max)
formatter=self.get_formatter()
if formatter:
cb1 = ColorbarBase(ax,norm=norm,format=formatter,spacing='proportional',orientation='vertical')
else:
cb1 = ColorbarBase(ax,norm=norm,spacing='proportional',orientation='vertical')
cb1.set_label(label,color='1')
ax.set_title(title,color='1')
for tl in ax.get_yticklabels():
tl.set_color('1')
im=cStringIO.StringIO()
fig.savefig(im,dpi=300,format='png',transparent=True)
pylab.close(fig)
s=im.getvalue()
im.close()
return s
def get_norm(self,min,max):
norm=Normalize(min,max)
return norm
def get_formatter(self):
return None
def process_image(self):
'''Do anything to the current figure window before saving it as an image.'''
pass
def get_kml_dict(self,name,filename,alpha=143):
'''returns a dictionary of relevant info the create the image
portion of the kml file'''
lon1,lon2,lat1,lat2=self.get_bounds()
d={'lat1':lat1,'lat2':lat2,'lon1':lon1,'lon2':lon2, \
'name':name,'filename':filename,'time':self.get_time(),'alpha':alpha}
return d
def get_time(self):
'''Return the time interval information for this image using the kml
format string `timestr'. Or an empty string to disable animations.'''
return ''
def image2kmlStatic(self,varname,filename=None):
'''Read data from the NetCDF file, create a psuedo-color image as a png,
then create a kml string for displaying the image in Google Earth. Returns
the kml string describing the GroundOverlay. Optionally, the filename
used to write the image can be specified, otherwise a default will be used.'''
vdata=self.get_array(varname)
min,max=self.get_minmax(varname)
im=self.get_image(vdata,min,max)
if filename is None:
filename='%s.png' % varname
f=open(filename,'w')
f.write(im)
f.close()
d=self.get_kml_dict(varname,filename)
pylab.close('all')
return self.__class__.kmlimageStatic % d
def image2kml(self,varname,filename=None,relfilename=None):
'''Read data from the NetCDF file, create a psuedo-color image as a png,
then create a kml string for displaying the image in Google Earth. Returns
the kml string describing the GroundOverlay. Optionally, the filename
used to write the image can be specified, otherwise a default will be used.'''
vdata=self.get_array(varname)
min,max=self.get_minmax(varname)
im=self.get_image(vdata,min,max)
if filename is None:
filename='%s.png' % varname
f=open(filename,'w')
f.write(im)
f.close()
if relfilename is None:
relfilename=filename
d=self.get_kml_dict(varname,relfilename)
return self.__class__.kmlimage % d
def colorbar2kml(self,varname,filename=None):
min,max=self.get_minmax(varname)
label=self.get_label(varname)
cdata=self.get_colorbar(varname,label,min,max)
if filename is None:
filename='colorbar_%s.png' % varname
f=open(filename,'w')
f.write(cdata)
f.close()
pylab.close('all')
return self.__class__.kmlcolorbar % {'name':varname,'file':filename}
def get_label(self,varname):
return ''
def write_kml(self,varnames,kmlfile=None,imgfile=None,colorbar=True):
'''Create the actual kml file for a list of variables by calling image2kml
for each variable in a list of variable names.'''
if type(varnames) is str:
varnames=(varnames,)
content=[]
relfilename=imgfile
imgfile=os.path.join(os.path.dirname(kmlfile),imgfile)
imgdir=os.path.dirname(imgfile)
if not os.path.isdir(imgdir):
os.mkdir(imgdir)
for varname in varnames:
label=self.get_label(varname)
content.append(self.image2kml(varname,filename=imgfile,relfilename=relfilename))
if colorbar:
content.append(self.colorbar2kml(varname))
kml=self.__class__.kmlstr % \
{'content':'\n'.join(content),\
'prog':self.__class__.progname}
if kmlfile is None:
kmlfile=self.__class__.kmlname
f=open(kmlfile,'w')
f.write(kml)
f.close()
class ncEarth_log(ncEarth):
def view_function(self,v):
if v.max() <= 0.:
raise ZeroArray()
v=np.ma.masked_equal(v,0.,copy=False)
v.fill_value=np.nan
v=np.log(v)
return v
def get_norm(self,min,max):
return LogNorm(min,max)
def get_formatter(self):
return LogFormatter(10,labelOnlyBase=False)
def compute_minmax(self,vname):
v=self.f.variables[vname][:]
if v[v>0].size == 0:
min=1e-6
max=1.
else:
min=v[v>0].min()
max=v.max()
return (min,max)
class ncEpiSimBase(object):
'''Epidemic model file class.'''
kmlname='epidemic.kml'
progname='EpiSim'
def get_bounds(self):
'''Get the lat/lon bounds of the output file... assumes regular lat/lon (no projection)'''
lat=self.f.variables['latitude']
lon=self.f.variables['longitude']
lat1=lat[0]
lat2=lat[-1]
lon1=lon[0]
lon2=lon[-1]
return (lon1,lon2,lat1,lat2)
class ncEpiSim(ncEpiSimBase,ncEarth_log):
pass
class ncWRFFireBase(object):
'''WRF-Fire model file class.'''
kmlname='fire.kml'
progname='WRF-Fire'
wrftimestr='%Y-%m-%d_%H:%M:%S'
def __init__(self,filename,hsize=5,istep=0):
'''Overloaded constructor for WRF output files:
filename : output NetCDF file
hsize : output image width in inches
istep : time slice to output (between 0 and the number of timeslices in the file - 1)'''
ncEarth.__init__(self,filename,hsize)
self.istep=istep
def get_bounds(self):
'''Get the latitude and longitude bounds for an output domain. In general,
we need to reproject the data to a regular lat/lon grid. This can be done
with matplotlib's BaseMap module, but is not done here.'''
lat=self.f.variables['XLAT'][0,:,:].squeeze()
lon=self.f.variables['XLONG'][0,:,:].squeeze()
dx=lon[0,1]-lon[0,0]
dy=lat[1,0]-lat[0,0]
#lat1=np.min(lat)-dy/2.
#lat2=np.max(lat)+dy/2
#lon1=np.min(lon)-dx/2.
#lon2=np.max(lon)+dx/2
lat1=lat[0,0]-dy/2.
lat2=lat[-1,0]+dy/2.
lon1=lon[0,0]-dx/2.
lon2=lon[0,-1]+dx/2.
return (lon1,lon2,lat1,lat2)
def isfiregrid(self,vname):
xdim=self.f.variables[vname].dimensions[-1]
return xdim[-7:] == 'subgrid'
def srx(self):
try:
s=len(self.f.dimensions['west_east_subgrid'])/(len(self.f.dimensions['west_east'])+1)
except:
s=(self.f.dimensions['west_east_subgrid'])/((self.f.dimensions['west_east'])+1)
return s
def sry(self):
try:
s=len(self.f.dimensions['south_north_subgrid'])/(len(self.f.dimensions['south_north'])+1)
except:
s=(self.f.dimensions['south_north_subgrid'])/((self.f.dimensions['south_north'])+1)
return s
def get_array(self,vname):
'''Return a single time slice of a variable from a WRF output file.'''
v=self.f.variables[vname]
v=v[self.istep,:,:].squeeze()
if self.isfiregrid(vname):
v=v[:-self.sry(),:-self.srx()]
v=pylab.flipud(v)
if vname == 'FGRNHFX' or vname == 'GRNHFX':
v[:]=v*0.239005736
return v
def get_dates(self):
t1=self.f.variables["Times"][0,:].tostring()
t2=self.f.variables["Times"][-1,:].tostring()
return '%s - %s' % (t1,t2)
def get_time(self):
'''Process the time information from the WRF output file to create a
proper kml TimeInterval specification.'''
global dlock
start=''
end=''
time=''
g=self.f
times=g.variables["Times"]
if self.istep > 0:
with dlock:
start=ncEarth.beginstr % \
datetime.strptime(times[self.istep,:].tostring(),\
self.__class__.wrftimestr).isoformat()
if self.istep < times.shape[0]-1:
with dlock:
end=ncEarth.endstr % \
datetime.strptime(times[self.istep+1,:].tostring(),\
self.__class__.wrftimestr).isoformat()
if start is not '' or end is not '':
time=ncEarth.timestr % {'begin':start,'end':end}
return time
def get_label(self,varname):
v=self.f.variables[varname]
return v.units
class ncWRFFire(ncWRFFireBase,ncEarth):
pass
class ncWRFFireLog(ncWRFFireBase,ncEarth_log):
pass
def create_image(fname,istep,nstep,vname,vstr,logscale,colorbar,imgs,content):
global lock
global queue
queue.acquire()
i=istep
if logscale:
kml=ncWRFFireLog(fname,istep=istep)
else:
kml=ncWRFFire(fname,istep=istep)
if colorbar:
img='files/colorbar_%s.png' % vname
img_string=kml.colorbar2kml(vname,img)
with lock:
content.append(img_string)
imgs.append(img)
try:
img=vstr % (vname,istep)
img_string=kml.image2kml(vname,img)
with lock:
content.append(img_string)
imgs.append(img)
print 'creating frame %i of %i' % (i,nstep)
except ZeroArray:
with lock:
print 'skipping frame %i of %i' % (i,nstep)
queue.release()
class ncWRFFire_mov(object):
'''A class the uses ncWRFFire to create animations from WRF history output file.'''
def __init__(self,filename,hsize=5,nstep=None):
'''Class constructor:
filename : NetCDF output file name
hsize : output image width in inces
nstep : the number of frames to process (default all frames in the file)'''
self.filename=filename
f=Dataset(filename,'r')
g=f
self.nstep=nstep
if nstep is None:
# in case nstep was not specified read the total number of time slices from the file
self.nstep=g.variables['Times'].shape[0]
def write_preload(self,vname,kmz='fire_preload.kmz'):
'''Create a kmz file from multiple time steps of a wrfout file. The kml file consists of a set of
GroundOverlays with time tag and a copy of the set without the time tag to preload the
images that are used in the GroundOverlays.'''
imgs=[] # to store a list of all images created
content=[] # the content of the main kml
vstr='files/%s_%05i.png' # format specification for images (all stored in `files/' subdirectory)
# create empty files subdirectory for output images
try:
shutil.rmtree('files')
except:
pass
os.makedirs('files')
# loop through all time slices and create the image data
# appending to the kml content string for each image
for i in xrange(0,self.nstep,1):
print i
kml=ncWRFFire(self.filename,istep=i)
img=vstr % (vname,i)
imgs.append(img)
content.append(kml.image2kmlStatic(vname,img))
kml.f.close()
# create the main kml file
kml=ncWRFFire.kmlstr % \
{'content':'\n'.join(content),\
'prog':ncWRFFire.progname}
# create a zipfile to store all images + kml into a single compressed file
z=zipfile.ZipFile(kmz,'w',compression=zipfile.ZIP_DEFLATED)
z.writestr(kmz[:-3]+'kml',kml)
for img in imgs:
z.write(img)
z.close()
def write(self,vname,kmz='fire.kmz',hsize=5,logscale=True,colorbar=True):
'''Create a kmz file from multiple time steps of a wrfout file.
vname : the variable name to visualize
kmz : optional, the name of the file to save the kmz to'''
imgs=[] # to store a list of all images created
content=[] # the content of the main kml
threads=[]
vstr='files/%s_%05i.png' # format specification for images (all stored in `files/' subdirectory)
# create empty files subdirectory for output images
try:
shutil.rmtree('files')
except:
pass
os.makedirs('files')
# loop through all time slices and create the image data
# appending to the kml content string for each image
#k=0
for i in xrange(0,self.nstep,1):
t=threading.Thread(target=create_image,args=(self.filename,i,self.nstep,vname,vstr,logscale,colorbar and i == 0,imgs,content))
t.start()
threads.append(t)
for t in threads:
t.join()
# create the main kml file
kml=ncWRFFire.kmlstr % \
{'content':'\n'.join(content),\
'prog':ncWRFFire.progname}
# create a zipfile to store all images + kml into a single compressed file
z=zipfile.ZipFile(kmz,'w',compression=zipfile.ZIP_DEFLATED)
z.writestr(kmz[:-3]+'kml',kml)
for img in imgs:
z.write(img)
z.close()
def uselog(vname):
if vname in ('FGRNHFX','GRNHFX'):
return True
else:
return False
if __name__ == '__main__':
import sys
if len(sys.argv) < 2:
print "Takes a WRF-Fire output file and writes fire.kmz."
print "usage: %s filename"%sys.argv[0]
else:
filename=sys.argv[1]
if len(sys.argv) == 2:
vars=('FGRNHFX',)
else:
vars=sys.argv[2:]
kmz=ncWRFFire_mov(filename)
for v in vars:
kmz.write(v,hsize=8,kmz='fire_'+v+'.kmz',logscale=uselog(v))