
com.github.nikolaybespalov.gtozi.OziMapFormatFactorySpi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-ozi Show documentation
Show all versions of gt-ozi Show documentation
GeoTools plugin that allows you to read OziExplorer spatial reference file(.MAP) without using
GDAL/OziApi or any other environment dependencies.
package com.github.nikolaybespalov.gtozi;
import org.geotools.coverage.grid.io.AbstractGridFormat;
import org.geotools.coverage.grid.io.GridFormatFactorySpi;
import java.awt.*;
import java.util.Collections;
import java.util.Map;
@SuppressWarnings("unused")
public final class OziMapFormatFactorySpi implements GridFormatFactorySpi {
@Override
public AbstractGridFormat createFormat() {
return new OziMapFormat();
}
@Override
public boolean isAvailable() {
return true;
}
@Override
public Map getImplementationHints() {
return Collections.emptyMap();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy