<div dir="ltr"><div><div><div><div>Hi All<br><br></div>I have rectilinear grid read from a netcdf ocean data file with X, Y, Z axes.<br><br></div>Currently I have applied a color map for entire rectilinear grid by finding out its min and max values.<br><br></div><div>currently my code looks like this.<br></div><div>=============================================<br>#Read file in the NetCDF foramat<br>netCdfReader = vtkNetCDFCFReader()<br>netCdfReader.SetFileName("netCdfFilename.nc")<br>netCdfReader.SphericalCoordinatesOff()<br>netCdfReader.SetReplaceFillValueWithNan(1)<br>netCdfReader.Update()<br><br>#Find the min max range of values<br>a, b= netCdfReader.GetOutput().GetPointData().GetScalars().GetRange()<br>#create a look up table for color mapping<br>lut = vtk.vtkColorTransferFunction()<br>lut.AddRGBPoint(a,         0.0, 0.0, 1.0)<br>lut.AddRGBPoint(a+(b-a)/4, 0.0, 0.5, 0.5)<br>lut.AddRGBPoint(a+(b-a)/2, 0.0, 1.0, 0.0)<br>lut.AddRGBPoint(b-(b-a)/4, 0.5, 0.5, 0.0)<br>lut.AddRGBPoint(b,         1.0, 0.0, 0.0) <br>lut.SetNanColor(0.7,0.7,0.7)#gray color<br><br>gridMapper = vtkDataSetMapper()<br>gridMapper.SetInputData( netCdfReader.GetOutput() )<br>gridMapper.SetScalarModeToUsePointData()<br>gridMapper.SetLookupTable(lut)<br>============================================<br><br></div>Now I would like to find (min, max) values of each horizontal slice (for each value of Z).<br><br></div><div>I want get (min, max) values for each value of Z axes and apply the color map that particular slice, according the obtained (min, max) range.<br></div>Could anyone help me on this.<br><div><div><div><div><div><div><div><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><font color="#ff0000"> </font><font color="#ff6600">Thanks and Regards,</font></div><div><font color="#3366ff"><br></font></div><div><span style="color:rgb(51,102,255)"> Manjunath K E</span><font color="#3366ff"></font></div><div><font color="#3366ff"> <span style="color:rgb(241,194,50)">Help Ever Hurt Never</span><br></font></div><div><font color="#3366ff">  </font></div></div></div></div></div></div></div></div></div></div>
</div></div></div></div></div></div></div>