NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.
To learn about what's going on, see About the Archive Site.
> You can reverse an axis by using the setRange method of the ScalarMap to > that axis. > > ScalarMap sm = new ScalarMap(myRangeType, Display.YAxis); > myDisplay.addMap(sm); > ... > double[] range = sm.getRange(); > sm.setRange(range[1], range[0]); Or, if you have some desired range of pressures, you can just do: ScalarMap sm = new ScalarMap(myRangeType, Display.YAxis); myDisplay.addMap(sm); sm.setRange(1012.0, 100.0); // or whatever Cheers, Bill ---------------------------------------------------------- Bill Hibbard, SSEC, 1225 W. Dayton St., Madison, WI 53706 hibbard@xxxxxxxxxxxxxxxxx 608-263-4427 fax: 608-263-6738 http://www.ssec.wisc.edu/~billh/vis.html
visad
archives: