Package com.vividsolutions.jump.util

Examples of com.vividsolutions.jump.util.CollectionMap


  public Map match(IndexedFeatureCollection targetFC, IndexedFeatureCollection candidateFC,
      TaskMonitor monitor) {
    monitor.allowCancellationRequests();
    FeatureCollection compositeTargetFC = new FeatureDataset(targetFC.getFeatureSchema());
    CollectionMap constituentToCompositesMap = new CollectionMap();
    createComposites(targetFC, constituentToCompositesMap, compositeTargetFC, monitor);
    Map targetFeatureToMatchesMap = matchFinder.match(
        new IndexedFeatureCollection(compositeTargetFC),
        candidateFC, monitor);
    deleteInferiorComposites(targetFeatureToMatchesMap, constituentToCompositesMap, monitor);
View Full Code Here

TOP

Related Classes of com.vividsolutions.jump.util.CollectionMap

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.