I am struggling to figure out how to set up a geolocation index, and how to use it, in titan 0.5.1.
Previously, in Titan 0.4 you could do the following:
g = rexster.getGraph("graph")
location = g.makeKey("location").dataType(Geoshape.class).indexed("search", Edge.class).make();
This does not work in the new 0.5 API. I have been looking through just about everything in the docs, and I have looked in the source itself without any luck.
How can this be achieved in Titan 0.5.1 and how can I use it after it is set up?
Thanks :)
The GraphOfTheGodsFactory code always shows how it's done in the current version.
Querying is the same as in 0.4 (use
Geo.WITHIN
to search for points that fall within a given circle).