org.openlr.locationreference.GridLocationReferenceImpl Maven / Gradle / Ivy
package org.openlr.locationreference;
import lombok.Data;
import org.locationtech.jts.geom.Coordinate;
@Data
class GridLocationReferenceImpl implements GridLocationReference {
private final Coordinate lowerLeft;
private final Coordinate upperRight;
private final int numberOfColumns;
private final int numberOfRows;
}