![JAR search and dependency download from the Maven repository](/logo.png)
org.openlr.binary.reader.GeoCoordinateLocationReferenceReader Maven / Gradle / Ivy
The newest version!
package org.openlr.binary.reader;
import org.locationtech.jts.geom.Coordinate;
import org.openlr.binary.format.Status;
import org.openlr.locationreference.GeoCoordinateLocationReference;
import org.openlr.locationreference.LocationReferenceFactory;
import java.io.ByteArrayInputStream;
import java.io.IOException;
class GeoCoordinateLocationReferenceReader {
private final LocationReferenceFactory locationReferenceFactory;
private final StatusReader statusReader;
private final CoordinateReader coordinateReader;
GeoCoordinateLocationReferenceReader(LocationReferenceFactory locationReferenceFactory, StatusReader statusReader, CoordinateReader coordinateReader) {
this.locationReferenceFactory = locationReferenceFactory;
this.statusReader = statusReader;
this.coordinateReader = coordinateReader;
}
GeoCoordinateLocationReference read(ByteArrayInputStream inputStream) throws IOException {
Status status = statusReader.read(inputStream);
if (status.getVersion() != 3) {
throw new IllegalArgumentException();
}
if (status.isAttributeFlag()) {
throw new IllegalArgumentException();
}
if (status.getAreaFlag() != 0) {
throw new IllegalArgumentException();
}
if (!status.isPointFlag()) {
throw new IllegalArgumentException();
}
Coordinate coordinate = coordinateReader.readAbsoluteCoordinate(inputStream);
return locationReferenceFactory.createGeoCoordinateLocationReference(coordinate);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy