Package de.komoot.photon.importer.json

Examples of de.komoot.photon.importer.json.JsonDumper


    }

    if(args.getJsonDump() != null) {
      try {
        final String filename = args.getJsonDump();
        final JsonDumper jsonDumper = new JsonDumper(filename);
        NominatimConnector nominatimConnector = new NominatimConnector(args.getHost(), args.getPort(), args.getDatabase(), args.getUser(), args.getPassword());
        nominatimConnector.setImporter(jsonDumper);
        nominatimConnector.readEntireDatabase();
        log.info("json dump was created: " + filename);
        return;
View Full Code Here

TOP

Related Classes of de.komoot.photon.importer.json.JsonDumper

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.