All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.nikolaybespalov.gtozi.OziMapFormatFactorySpi Maven / Gradle / Ivy

Go to download

GeoTools plugin that allows you to read OziExplorer spatial reference file(.MAP) without using GDAL/OziApi or any other environment dependencies.

There is a newer version: 0.1.17
Show newest version
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