/* * Grid2DSquareCellDoubleFactory.java * * Created on 04 February 2002, 11:59 */ package uk.ac.leeds.ccg.cluster.grids; /** * * @author andyt */ public class Grid2DSquareCellDoubleFactory extends AbstractGrid2DSquareCellDoubleFactory { /** Creates new Grid2DSquareCellDoubleFactory. */ public Grid2DSquareCellDoubleFactory() { } public AbstractGrid2DSquareCellDouble createGrid2DSquareCellDouble(int nrows,int ncols,double xllcorner,double yllcorner,double cellsize,double noDataValue) { return new Grid2DSquareCellDouble(nrows,ncols,xllcorner,yllcorner,cellsize,noDataValue); } public String toString() { return "Grid2DSquareCellDoubleFactory"; } }