Examples of asAltitude()


Examples of net.sourceforge.gpstools.utils.GpsFormat.asAltitude()

        for(Trkpt pt : seg.getTrkpt()){
            sb.append(gpsFormat.asLatLon(pt.getLon(), pt.getLat()));
            Number ele = pt.getEle();
            if(ele != null && ele.doubleValue() >= 0.01){
                sb.append(',');
                sb.append(gpsFormat.asAltitude(ele));
            }
            sb.append(' ');
        }
        sb.deleteCharAt(sb.length() - 1);
        return sb.toString();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.