
org.elasticsearch.geometry.Point Maven / Gradle / Ivy
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.geometry;
import org.elasticsearch.geometry.utils.WellKnownText;
/**
* Represents a Point on the earth's surface in decimal degrees and optional altitude in meters.
*/
public class Point implements Geometry {
public static final Point EMPTY = new Point();
private final double y;
private final double x;
private final double z;
private final boolean empty;
private Point() {
y = 0;
x = 0;
z = Double.NaN;
empty = true;
}
public Point(double x, double y) {
this(x, y, Double.NaN);
}
public Point(double x, double y, double z) {
this.y = y;
this.x = x;
this.z = z;
this.empty = false;
}
@Override
public ShapeType type() {
return ShapeType.POINT;
}
public double getY() {
return y;
}
public double getX() {
return x;
}
public double getZ() {
return z;
}
public double getLat() {
return y;
}
public double getLon() {
return x;
}
public double getAlt() {
return z;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Point point = (Point) o;
if (point.empty != empty) return false;
if (Double.compare(point.y, y) != 0) return false;
if (Double.compare(point.x, x) != 0) return false;
return Double.compare(point.z, z) == 0;
}
@Override
public int hashCode() {
int result;
long temp;
temp = Double.doubleToLongBits(y);
result = (int) (temp ^ (temp >>> 32));
temp = Double.doubleToLongBits(x);
result = 31 * result + (int) (temp ^ (temp >>> 32));
temp = Double.doubleToLongBits(z);
result = 31 * result + (int) (temp ^ (temp >>> 32));
return result;
}
@Override
public T visit(GeometryVisitor visitor) throws E {
return visitor.visit(this);
}
@Override
public boolean isEmpty() {
return empty;
}
@Override
public boolean hasZ() {
return Double.isNaN(z) == false;
}
@Override
public String toString() {
return WellKnownText.toWKT(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy