org.khelekore.prtree.PointND Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of georewrite Show documentation
Show all versions of georewrite Show documentation
重写geoserver发送到h2的sql,以实现自定义数据源
package org.khelekore.prtree;
/** A description of an N-dimensional point
*/
public interface PointND {
/**
* @return the number of dimensions this point has
*/
int getDimensions ();
/**
* @param axis the axis to get the value for
* @return the ordinate value for the given axis
*/
double getOrd (int axis);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy