Package org.tastefuljava.hiketools.geo

Examples of org.tastefuljava.hiketools.geo.Summary


            GpxWriter.writeTrack(trk, new File(dir, name + ".gpx"));
        }
        if (xol) {
            XolWriter.writeTrack(trk, new File(dir, name + ".xol"));
        }
        Summary summary = Summary.compute(trk);
        Profile.writeProfile(trk, 600, 200,
                new File(dir, "profile.png"));
        VelocityContext context = new VelocityContext();
        context.put("name", name);
        context.put("title", "Map for " + name);
View Full Code Here

TOP

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

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.