/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package test.endtoend; import org.autoplot.AutoplotUtil; import org.autoplot.RenderType; import org.das2.qds.QDataSet; import org.das2.qds.SemanticOps; /** * Test for autoranging for various QDataSets. This now uses AutoplotUtil.bounds, which was extracted from here to * mimic the Autoplot code for autoranging. * @author jbf */ public class Test022 { private static boolean doTest( QDataSet ds, QDataSet bounds ) throws Exception { QDataSet tbounds= AutoplotUtil.bounds(ds,RenderType.spectrogram); System.err.println( "tbounds=" + tbounds ); if ( bounds!=null ) System.err.println( "bounds=" + bounds ); return true; } // private static void dumpRank3Ds( QDataSet ds ) { // for ( int i=0; i