Package net.sourceforge.gpstools

Examples of net.sourceforge.gpstools.TrackInterpolator


    /** Main method for testing purposes. Tries to read XMP GPS tags from
        all files handed as arguments. **/
    public static void main(String[] argv) throws Exception{
        IIOXMPReader me = new IIOXMPReader();
        TrackInterpolator tp = new TrackInterpolator();
        for(String f: argv){
            Wpt pt = me.readGPSTag(new File(f));
            if(pt != null){
                tp.printWpt(System.out,pt);
            }
        }
        me.releaseResources();
    }
View Full Code Here


    /** Main method for testing purposes. Tries to read XMP GPS tags from
        all files handed as arguments. **/
    public static void main(String[] argv) throws Exception{
        XMPReader me = new XMPReader();
        TrackInterpolator tp = new TrackInterpolator();
        for(String f: argv){
            File ff = new File(f);
            System.out.println(f);
            System.out.println(me.readJPEGDimension(ff));
            Wpt pt = me.readGPSTag(ff);
            if(pt != null){
                tp.printWpt(System.out,pt);
            }
        }
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.gpstools.TrackInterpolator

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.