org.openlr.encoder.PointAlongLineEncoderResult Maven / Gradle / Ivy
The newest version!
package org.openlr.encoder;
import lombok.Data;
import org.openlr.locationreference.LocationReferencePoint;
@Data
class PointAlongLineEncoderResult {
private final LocationReferencePoint firstLocationReferencePoint;
private final LocationReferencePoint lastLocationReferencePoint;
private final double relativePositiveOffset;
}