All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.geo.Point Maven / Gradle / Ivy

There is a newer version: 6.4.2_1
Show newest version
/*
 * 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 point on the earth's surface. You can construct the point directly with {@code
 * double} coordinates.
 *
 * 

NOTES: * *

    *
  1. latitude/longitude values must be in decimal degrees. *
  2. For more advanced GeoSpatial indexing and query operations see the {@code spatial-extras} * module *
*/ public final class Point extends LatLonGeometry { /** latitude coordinate */ private final double lat; /** longitude coordinate */ private final double lon; /** Creates a new Point from the supplied latitude/longitude. */ public Point(double lat, double lon) { GeoUtils.checkLatitude(lat); GeoUtils.checkLongitude(lon); this.lat = lat; this.lon = lon; } /** Returns latitude value at given index */ public double getLat() { return lat; } /** Returns longitude value at given index */ public double getLon() { return lon; } @Override protected Component2D toComponent2D() { return Point2D.create(this); } @Override public boolean equals(Object o) { if (this == o) return true; if (!(o instanceof Point)) return false; Point point = (Point) o; return Double.compare(point.lat, lat) == 0 && Double.compare(point.lon, lon) == 0; } @Override public int hashCode() { int result = Double.hashCode(lat); result = 31 * result + Double.hashCode(lon); return result; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("Point("); sb.append(lon); sb.append(","); sb.append(lat); sb.append(')'); return sb.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy