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

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

package org.openlr.locationreference;

import org.locationtech.jts.geom.Coordinate;

/**
 * A grid location reference.
 */
public interface GridLocationReference extends AreaLocationReference {
    /**
     * @return the lower left point of the grid
     */
    Coordinate getLowerLeft();

    /**
     * @return the upper right point of the grid
     */
    Coordinate getUpperRight();

    /**
     * @return the number of columns in the grid
     */
    int getNumberOfColumns();

    /**
     * @return the number of rows in the grid
     */
    int getNumberOfRows();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy