Package com.browseengine.bobo.geosearch.impl

Examples of com.browseengine.bobo.geosearch.impl.GeoConverter


    public GeoOnlySearcher(GeoSearchConfig config, Directory directory, String indexName) {
        this.config = config;
        this.directory = directory;
        this.indexName = indexName;
       
        geoConverter = new GeoConverter();
    }
View Full Code Here


                     float rangeInKm) {
       
        super(weight);
        double centroidLatitudeRadians = Conversions.d2r(centroidLatitude);
        double centroidLongitudeRadians = Conversions.d2r(centroidLongitude);
        this.geoConverter = new GeoConverter();
        this.geoBlockOfHitsProvider = new GeoBlockOfHitsProvider(geoConverter);
       
        this.segmentsInOrder = segmentsInOrder;
       
        this.centroidX = geoConverter.getXFromRadians(centroidLatitudeRadians, centroidLongitudeRadians);
View Full Code Here

TOP

Related Classes of com.browseengine.bobo.geosearch.impl.GeoConverter

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.