Package com.vividsolutions.jcs.conflate.polygonmatch

Examples of com.vividsolutions.jcs.conflate.polygonmatch.FCMatchFinder


//            envelope.getMinY(),
//            envelope.getMaxX(),
//            envelope.getMaxY());
       
        // build matcher
        FCMatchFinder finder = settings.getMatchFinder();

        // FIXME: ignore/filter duplicate objects (i.e. same object in both sets)
        // FIXME: fix match functions to work on point/linestring features as well
        // find matches
        Map<OsmFeature, Matches> map = finder.match(refColl, subColl, monitor);
       
        monitor.subTask("Finishing match list");
       
        // convert to simple one-to-one match
        SimpleMatchList list = new SimpleMatchList();
View Full Code Here

TOP

Related Classes of com.vividsolutions.jcs.conflate.polygonmatch.FCMatchFinder

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.