Package com.solfin.grib

Examples of com.solfin.grib.GribUnit


                    theta,
                    windSpeed);
        } else if (gr1!=null) {
            GribParameter gpr=new GribParameter(gr1.getParameterId());
            String grLabel=gpr.getLabel();
            GribUnit gu=gpr.getUnitType();
            if (grLabel==null)
                grLabel="{0}";
            if (gu!=null) {
                labelStr+="    "+MessageFormat.format(grLabel,gu.fromSI(gr1.getValueAt(mouseMP)),gu.getDisplay());
            } else {
                labelStr+="    "+MessageFormat.format(grLabel,gr1.getValueAt(mouseMP),gpr.getUnit());
            }
//            if (gr1.getParameterId()==11)
//                labelStr+="    "+MessageFormat.format(
View Full Code Here

TOP

Related Classes of com.solfin.grib.GribUnit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.