@aashish24 @sankhesh @doutriaux1 Just ran into this one while testing my performance branch, then went back and found it on master.
import vcs, cdms2
x = vcs.init()
f = cdms2.open(vcs.sample_data + "/clt.nc")
s = f("clt")
iso = x.createisofill()
iso.levels = range(0, 100, 10)
iso.fillareaindices = range(1, 11)
iso.ext_2 = True
x.plot(s, iso)
will give you this:

Obviously, fillareaindices shouldn't have any effect on a solid isofill, so that's a pretty weird behavior.
@aashish24 @sankhesh @doutriaux1 Just ran into this one while testing my performance branch, then went back and found it on master.
will give you this:
Obviously,
fillareaindicesshouldn't have any effect on asolidisofill, so that's a pretty weird behavior.