Package org.openstreetmap.osmosis.dataset.v0_6.impl

Examples of org.openstreetmap.osmosis.dataset.v0_6.impl.DatasetStore


    factoryMap.put("wc", new WriteDatasetFactory());
    factoryMap.put("dataset-dump", new DumpDatasetFactory());
    factoryMap.put("dd", new DumpDatasetFactory());
    factoryMap.put("read-customdb", new ReadDatasetFactory());
    factoryMap.put("rc", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box", new DatasetBoundingBoxFilterFactory());
    factoryMap.put("dbb", new DatasetBoundingBoxFilterFactory());
   
    factoryMap.put("write-customdb-0.6", new WriteDatasetFactory());
    factoryMap.put("dataset-dump-0.6", new DumpDatasetFactory());
    factoryMap.put("read-customdb-0.6", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box-0.6", new DatasetBoundingBoxFilterFactory());
   
    return factoryMap;
  }
View Full Code Here


   
    factoryMap = new HashMap<String, TaskManagerFactory>();
   
    factoryMap.put("write-customdb", new WriteDatasetFactory());
    factoryMap.put("wc", new WriteDatasetFactory());
    factoryMap.put("dataset-dump", new DumpDatasetFactory());
    factoryMap.put("dd", new DumpDatasetFactory());
    factoryMap.put("read-customdb", new ReadDatasetFactory());
    factoryMap.put("rc", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box", new DatasetBoundingBoxFilterFactory());
    factoryMap.put("dbb", new DatasetBoundingBoxFilterFactory());
   
    factoryMap.put("write-customdb-0.6", new WriteDatasetFactory());
    factoryMap.put("dataset-dump-0.6", new DumpDatasetFactory());
    factoryMap.put("read-customdb-0.6", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box-0.6", new DatasetBoundingBoxFilterFactory());
   
    return factoryMap;
  }
View Full Code Here

   
    factoryMap.put("write-customdb", new WriteDatasetFactory());
    factoryMap.put("wc", new WriteDatasetFactory());
    factoryMap.put("dataset-dump", new DumpDatasetFactory());
    factoryMap.put("dd", new DumpDatasetFactory());
    factoryMap.put("read-customdb", new ReadDatasetFactory());
    factoryMap.put("rc", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box", new DatasetBoundingBoxFilterFactory());
    factoryMap.put("dbb", new DatasetBoundingBoxFilterFactory());
   
    factoryMap.put("write-customdb-0.6", new WriteDatasetFactory());
    factoryMap.put("dataset-dump-0.6", new DumpDatasetFactory());
    factoryMap.put("read-customdb-0.6", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box-0.6", new DatasetBoundingBoxFilterFactory());
   
    return factoryMap;
  }
View Full Code Here

  public Map<String, TaskManagerFactory> loadTaskFactories() {
    Map<String, TaskManagerFactory> factoryMap;
   
    factoryMap = new HashMap<String, TaskManagerFactory>();
   
    factoryMap.put("write-customdb", new WriteDatasetFactory());
    factoryMap.put("wc", new WriteDatasetFactory());
    factoryMap.put("dataset-dump", new DumpDatasetFactory());
    factoryMap.put("dd", new DumpDatasetFactory());
    factoryMap.put("read-customdb", new ReadDatasetFactory());
    factoryMap.put("rc", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box", new DatasetBoundingBoxFilterFactory());
    factoryMap.put("dbb", new DatasetBoundingBoxFilterFactory());
   
    factoryMap.put("write-customdb-0.6", new WriteDatasetFactory());
    factoryMap.put("dataset-dump-0.6", new DumpDatasetFactory());
    factoryMap.put("read-customdb-0.6", new ReadDatasetFactory());
    factoryMap.put("dataset-bounding-box-0.6", new DatasetBoundingBoxFilterFactory());
   
    return factoryMap;
View Full Code Here

   *            If true a tile index is created for ways, otherwise a node-way
   *            index is used.
   */
  public ReadDataset(File directory, boolean enableWayTileIndex) {
    fileManager = new PermanentFileDatasetStoreFileManager(directory);
    store = new DatasetStore(fileManager, enableWayTileIndex);
  }
View Full Code Here

   *            If true a tile index is created for ways, otherwise a node-way
   *            index is used.
   */
  public WriteDataset(File directory, boolean enableWayTileIndex) {
    fileManager = new PermanentFileDatasetStoreFileManager(directory);
    store = new DatasetStore(fileManager, enableWayTileIndex);
  }
View Full Code Here

   * @param enableWayTileIndex
   *            If true a tile index is created for ways, otherwise a node-way
   *            index is used.
   */
  public ReadDataset(File directory, boolean enableWayTileIndex) {
    fileManager = new PermanentFileDatasetStoreFileManager(directory);
    store = new DatasetStore(fileManager, enableWayTileIndex);
  }
View Full Code Here

   * @param enableWayTileIndex
   *            If true a tile index is created for ways, otherwise a node-way
   *            index is used.
   */
  public WriteDataset(File directory, boolean enableWayTileIndex) {
    fileManager = new PermanentFileDatasetStoreFileManager(directory);
    store = new DatasetStore(fileManager, enableWayTileIndex);
  }
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.dataset.v0_6.impl.DatasetStore

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.