Package org.neo4j.gis.spatial.filter

Examples of org.neo4j.gis.spatial.filter.SearchCQL


      // filter by Feature unique id
      List<SpatialDatabaseRecord> results = layer.getIndex().get(convertToGeomNodeIds((FidFilterImpl) filter));
      System.out.println("found results for FidFilter: " + results.size());
      records = results.iterator();
    } else {
      records = layer.getIndex().search(new SearchCQL(layer, filter));
    }
     
    return new Neo4jSpatialFeatureReader(layer, getSchema(typeName), records);
    }
View Full Code Here

TOP

Related Classes of org.neo4j.gis.spatial.filter.SearchCQL

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.