We known that NaNs are not handled well by the WebGL viewer for Vertex objects. However, it seems that the viewer can handle NaNs perfectly fine for RGBVertex objects. We should investigate this difference and possibly figure out a fix for the Vertex objects.
Example:
import cortex
import numpy as np
vtx = cortex.Vertex.random("fsaverage")
# get an roi to mask out
roi = cortex.get_roi_verts("fsaverage", roi="IPS0")["IPS0"]
vtx.data[roi] = np.nan
cortex.webgl.show({"vertex": vtx, "rgbvertex": vtx.raw})
produces


We known that NaNs are not handled well by the WebGL viewer for
Vertexobjects. However, it seems that the viewer can handle NaNs perfectly fine forRGBVertexobjects. We should investigate this difference and possibly figure out a fix for theVertexobjects.Example:
produces

