/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.geo;
Represents a circle on the earth's surface.
NOTES:
- Latitude/longitude values must be in decimal degrees.
- Radius must be in meters.
- For more advanced GeoSpatial indexing and query operations see the
spatial-extras
module
@lucene.experimental
/**
* Represents a circle on the earth's surface.
* <p>
* NOTES:
* <ol>
* <li> Latitude/longitude values must be in decimal degrees.
* <li> Radius must be in meters.
* <li>For more advanced GeoSpatial indexing and query operations see the {@code spatial-extras} module
* </ol>
* @lucene.experimental
*/
public final class Circle extends LatLonGeometry {
Center latitude /** Center latitude */
private final double lat;
Center longitude /** Center longitude */
private final double lon;
radius in meters /** radius in meters */
private final double radiusMeters;
Max radius allowed, half of the earth mean radius./** Max radius allowed, half of the earth mean radius.*/
public static double MAX_RADIUS = GeoUtils.EARTH_MEAN_RADIUS_METERS / 2.0;
Creates a new circle from the supplied latitude/longitude center and a radius in meters..
/**
* Creates a new circle from the supplied latitude/longitude center and a radius in meters..
*/
public Circle(double lat, double lon, double radiusMeters) {
GeoUtils.checkLatitude(lat);
GeoUtils.checkLongitude(lon);
if (radiusMeters <= 0) {
throw new IllegalArgumentException("radius must be bigger than 0, got " + radiusMeters);
}
if (radiusMeters < MAX_RADIUS == false) {
throw new IllegalArgumentException("radius must be lower than " + MAX_RADIUS + ", got " + radiusMeters);
}
this.lat = lat;
this.lon = lon;
this.radiusMeters = radiusMeters;
}
Returns the center's latitude /** Returns the center's latitude */
public double getLat() {
return lat;
}
Returns the center's longitude /** Returns the center's longitude */
public double getLon() {
return lon;
}
Returns the radius in meters /** Returns the radius in meters */
public double getRadius() {
return radiusMeters;
}
@Override
protected Component2D toComponent2D() {
return Circle2D.create(this);
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Circle)) return false;
Circle circle = (Circle) o;
return lat == circle.lat && lon == circle.lon && radiusMeters == circle.radiusMeters;
}
@Override
public int hashCode() {
int result = Double.hashCode(lat);
result = 31 * result + Double.hashCode(lon);
result = 31 * result + Double.hashCode(radiusMeters);
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("CIRCLE(");
sb.append("[" + lat + "," + lon + "]");
sb.append(" radius = " + radiusMeters + " meters");
sb.append(')');
return sb.toString();
}
}