i'm trying to add a lon lat point to a node. i was unable to find any doc regarding which java class should be used.
Here is what i have:
@NodeEntity
public class Coordination {
@Id
@GeneratedValue
private Long id;
@Index
private Value point;
private Double lon;
private Double lat;
@Relationship(type = "GEO_LOCATION", direction = Relationship.INCOMING)
private List<GeoLocation> geoLocations;
public Coordination(Double lon, Double lat) {
Value point = new PointValue(new InternalPoint2D(4326, lon, lat));
this.lon = lon;
this.lat = lat;
}
}
Value class is not working for me. what do i miss?
Using a
CompositeAttributeConverter
it is possible to define your own class to store lat and lon coordinates. However, you can also use the built-inPoint
and correspondingDistance
classes defined in Spring Data Commons.Here's an example from the test cases in Spring Data Neo4j:
You can then define methods such as:
The finder method will generate CYPHER that passes the following arguments to a
distance
function:Is this what you were looking for? If yes great! If not, could you please clarify your question.