Package org.locationtech.geogig.osm.internal.history

Examples of org.locationtech.geogig.osm.internal.history.HistoryDownloader


                threadFactory);
        final File targetDir = resolveTargetDir();
        console.println("Downloading to " + targetDir.getAbsolutePath());
        console.flush();

        HistoryDownloader downloader;
        downloader = new HistoryDownloader(osmAPIUrl, targetDir, startIndex, endIndex, executor);

        Envelope env = parseBbox();
        Predicate<Changeset> filter = parseFilter(env);
        downloader.setChangesetFilter(filter);
        try {
            importOsmHistory(cli, console, downloader, env);
        } finally {
            executor.shutdownNow();
            try {
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.osm.internal.history.HistoryDownloader

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.