Search in sources :

Example 1 with OSMHistoryImport

use of org.locationtech.geogig.osm.cli.commands.OSMHistoryImport in project GeoGig by boundlessgeo.

the class OSMCommandProxy method getCommandParser.

@Override
public JCommander getCommandParser() {
    JCommander commander = new JCommander();
    commander.setProgramName("geogig osm");
    commander.addCommand("import-history", new OSMHistoryImport());
    commander.addCommand("import", new OSMImport());
    commander.addCommand("export", new OSMExport());
    commander.addCommand("download", new OSMDownload());
    commander.addCommand("create-changeset", new CreateOSMChangeset());
    commander.addCommand("map", new OSMMap());
    commander.addCommand("unmap", new OSMUnmap());
    commander.addCommand("export-shp", new OSMExportShp());
    commander.addCommand("export-pg", new OSMExportPG());
    commander.addCommand("export-sl", new OSMExportSL());
    commander.addCommand("apply-diff", new OSMApplyDiff());
    return commander;
}
Also used : OSMExport(org.locationtech.geogig.osm.cli.commands.OSMExport) OSMExportShp(org.locationtech.geogig.osm.cli.commands.OSMExportShp) OSMHistoryImport(org.locationtech.geogig.osm.cli.commands.OSMHistoryImport) OSMExportPG(org.locationtech.geogig.osm.cli.commands.OSMExportPG) OSMUnmap(org.locationtech.geogig.osm.cli.commands.OSMUnmap) OSMExportSL(org.locationtech.geogig.osm.cli.commands.OSMExportSL) JCommander(com.beust.jcommander.JCommander) CreateOSMChangeset(org.locationtech.geogig.osm.cli.commands.CreateOSMChangeset) OSMMap(org.locationtech.geogig.osm.cli.commands.OSMMap) OSMImport(org.locationtech.geogig.osm.cli.commands.OSMImport) OSMApplyDiff(org.locationtech.geogig.osm.cli.commands.OSMApplyDiff) OSMDownload(org.locationtech.geogig.osm.cli.commands.OSMDownload)

Aggregations

JCommander (com.beust.jcommander.JCommander)1 CreateOSMChangeset (org.locationtech.geogig.osm.cli.commands.CreateOSMChangeset)1 OSMApplyDiff (org.locationtech.geogig.osm.cli.commands.OSMApplyDiff)1 OSMDownload (org.locationtech.geogig.osm.cli.commands.OSMDownload)1 OSMExport (org.locationtech.geogig.osm.cli.commands.OSMExport)1 OSMExportPG (org.locationtech.geogig.osm.cli.commands.OSMExportPG)1 OSMExportSL (org.locationtech.geogig.osm.cli.commands.OSMExportSL)1 OSMExportShp (org.locationtech.geogig.osm.cli.commands.OSMExportShp)1 OSMHistoryImport (org.locationtech.geogig.osm.cli.commands.OSMHistoryImport)1 OSMImport (org.locationtech.geogig.osm.cli.commands.OSMImport)1 OSMMap (org.locationtech.geogig.osm.cli.commands.OSMMap)1 OSMUnmap (org.locationtech.geogig.osm.cli.commands.OSMUnmap)1