hi all,
I am doing a bounding box query on the geo data that I have imported into the 
neo4j using these lines of codes : 

def bbox_query(db, xmin, ymin, xmax, ymax):
    spatialService = SpatialDatabaseService(db)
    SHPlayer = spatialService.getLayer("countries")
        spatialIndex = SHPlayer.getIndex()
    searchQuery = SearchIntersectWindow(Envelope(xmin, xmax, ymin, ymax))
           spatialIndex.executeSearch(searchQuery)

I wanna know if I can query on other attributes/tags of the geodata at the same 
time and if yes how. 



thanks in advance,
Sima


_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to