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

ucar.nc2.dataset.spi.CoordSystemBuilderFactory Maven / Gradle / Ivy

The newest version!
package ucar.nc2.dataset.spi;

import javax.annotation.Nullable;
import ucar.nc2.NetcdfFile;
import ucar.nc2.dataset.NetcdfDataset;
import ucar.nc2.internal.dataset.CoordSystemBuilder;

/**
 * A Service Provider of CoordSystemBuilder.
 */
public interface CoordSystemBuilderFactory {
  @Nullable
  String getConventionName();

  default boolean isMine(NetcdfFile ncfile) {
    return false; // if false, must have correct convention name.
  }

  CoordSystemBuilder open(NetcdfDataset.Builder datasetBuilder);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy