Package slash.navigation.copilot

Examples of slash.navigation.copilot.CoPilot8Format


    @SuppressWarnings("UnusedDeclaration")
    public SimpleRoute asCoPilot8Format() {
        if (getFormat() instanceof CoPilot8Format)
            return (SimpleRoute) this;
        return asSimpleFormat(new CoPilot8Format());
    }
View Full Code Here


    @Test
    public void testConvertColumbusV900ToCoPilot() throws IOException {
        convertRoundtrip(TEST_PATH + "from-columbusv900-standard.csv", new ColumbusV900StandardFormat(), new CoPilot6Format());
        convertRoundtrip(TEST_PATH + "from-columbusv900-professional.csv", new ColumbusV900ProfessionalFormat(), new CoPilot7Format());
        convertRoundtrip(TEST_PATH + "from-columbusv900-professional.csv", new ColumbusV900ProfessionalFormat(), new CoPilot8Format());
        convertRoundtrip(TEST_PATH + "from-columbusv900-professional.csv", new ColumbusV900ProfessionalFormat(), new CoPilot9Format());
    }
View Full Code Here

    @Test
    public void testConvertiBlue747ToCoPilot() throws IOException {
        convertRoundtrip(TEST_PATH + "from-iblue747.csv", new Iblue747Format(), new CoPilot6Format());
        convertRoundtrip(TEST_PATH + "from-iblue747.csv", new Iblue747Format(), new CoPilot7Format());
        convertRoundtrip(TEST_PATH + "from-iblue747.csv", new Iblue747Format(), new CoPilot8Format());
        convertRoundtrip(TEST_PATH + "from-iblue747.csv", new Iblue747Format(), new CoPilot9Format());
    }
View Full Code Here

    @Test
    public void testConvertQstarzQ1000ToCoPilot() throws IOException {
        convertRoundtrip(TEST_PATH + "from-qstarz-q1000.csv", new QstarzQ1000Format(), new CoPilot7Format());
        convertRoundtrip(TEST_PATH + "from-qstarz-q1000.csv", new QstarzQ1000Format(), new CoPilot7Format());
        convertRoundtrip(TEST_PATH + "from-qstarz-q1000.csv", new QstarzQ1000Format(), new CoPilot8Format());
        convertRoundtrip(TEST_PATH + "from-qstarz-q1000.csv", new QstarzQ1000Format(), new CoPilot9Format());
    }
View Full Code Here

    @Test
    public void testConvertCoPilotToGpx() throws IOException {
        convertRoundtrip(TEST_PATH + "from-copilot6.trp", new CoPilot6Format(), new Gpx10Format());
        convertRoundtrip(TEST_PATH + "from-copilot7.trp", new CoPilot7Format(), new Gpx11Format());
        convertRoundtrip(TEST_PATH + "from-copilot8.trp", new CoPilot8Format(), new Gpx11Format());
        convertRoundtrip(TEST_PATH + "from-copilot9.trp", new CoPilot9Format(), new Gpx11Format());
    }
View Full Code Here

    public void testConvertCoPilotToColumbusV900() throws IOException {
        convertRoundtrip(TEST_PATH + "from-copilot6.trp", new CoPilot6Format(), new ColumbusV900StandardFormat());
        convertRoundtrip(TEST_PATH + "from-copilot6.trp", new CoPilot6Format(), new ColumbusV900ProfessionalFormat());
        convertRoundtrip(TEST_PATH + "from-copilot7.trp", new CoPilot7Format(), new ColumbusV900StandardFormat());
        convertRoundtrip(TEST_PATH + "from-copilot7.trp", new CoPilot7Format(), new ColumbusV900ProfessionalFormat());
        convertRoundtrip(TEST_PATH + "from-copilot8.trp", new CoPilot8Format(), new ColumbusV900StandardFormat());
        convertRoundtrip(TEST_PATH + "from-copilot8.trp", new CoPilot8Format(), new ColumbusV900ProfessionalFormat());
        convertRoundtrip(TEST_PATH + "from-copilot9.trp", new CoPilot9Format(), new ColumbusV900StandardFormat());
        convertRoundtrip(TEST_PATH + "from-copilot9.trp", new CoPilot9Format(), new ColumbusV900ProfessionalFormat());
    }
View Full Code Here

    @Test
    public void testConvertCoPilotToNmn7() throws IOException {
        convertRoundtrip(TEST_PATH + "from-copilot6.trp", new CoPilot6Format(), new Nmn7Format());
        convertRoundtrip(TEST_PATH + "from-copilot7.trp", new CoPilot7Format(), new Nmn7Format());
        convertRoundtrip(TEST_PATH + "from-copilot8.trp", new CoPilot8Format(), new Nmn7Format());
        convertRoundtrip(TEST_PATH + "from-copilot9.trp", new CoPilot9Format(), new Nmn7Format());
    }
View Full Code Here

    @Test
    public void testConvertCoPilotToCoPilot() throws IOException {
        convertRoundtrip(TEST_PATH + "from-copilot6.trp", new CoPilot6Format(), new CoPilot7Format());
        convertRoundtrip(TEST_PATH + "from-copilot7.trp", new CoPilot7Format(), new CoPilot9Format());
        convertRoundtrip(TEST_PATH + "from-copilot8.trp", new CoPilot8Format(), new CoPilot6Format());
        convertRoundtrip(TEST_PATH + "from-copilot9.trp", new CoPilot9Format(), new CoPilot8Format());
    }
View Full Code Here

TOP

Related Classes of slash.navigation.copilot.CoPilot8Format

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.