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();
}