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

org.openlr.locationreference.CircleLocationReference Maven / Gradle / Ivy

package org.openlr.locationreference;

import org.locationtech.jts.geom.Coordinate;

/**
 * A circle location reference.
 */
public interface CircleLocationReference extends LocationReference {
    /**
     * @return the center of the circle
     */
    Coordinate getCenter();

    /**
     * @return the radius of the circle in meters
     */
    int getRadius();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy