Package org.tastefuljava.hiketools.geo

Examples of org.tastefuljava.hiketools.geo.TrackPoint


            + 3.238272*y
            - 0.270978*y2
            - 0.002528*x2
            - 0.0447*y2*y
            - 0.0140*x3;
        return new TrackPoint(lat/0.3600, lon/0.3600, h, time);
    }
View Full Code Here


    }

    private static void processFile(File file, boolean gpx, boolean xol,
            boolean ele, double epsilon, File baseDir) throws Exception {
        File dir = file.getParentFile();
        TrackPoint trk[];
        String name = file.getName();
        if (name.toLowerCase().endsWith(".xol")) {
            trk = XolReader.readTrack(file);
        } else {
            trk = GpxReader.readTrack(file);
View Full Code Here

TOP

Related Classes of org.tastefuljava.hiketools.geo.TrackPoint

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.