use of org.locationtech.geogig.osm.cli.commands.OSMExportPG 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;
}
Aggregations