org.nlpcn.es4sql.spatial.Point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-sql Show documentation
Show all versions of elasticsearch-sql Show documentation
Query elasticsearch using SQL
The newest version!
package org.nlpcn.es4sql.spatial;
/**
* Created by Eliran on 1/8/2015.
*/
public class Point {
private double lon;
private double lat;
public Point(double lon, double lat) {
this.lon = lon;
this.lat = lat;
}
public double getLon() {
return lon;
}
public double getLat() {
return lat;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy