本文整理汇总了Java中com.vividsolutions.jts.operation.distance.DistanceOp.isWithinDistance方法的典型用法代码示例。如果您正苦于以下问题:Java DistanceOp.isWithinDistance方法的具体用法?Java DistanceOp.isWithinDistance怎么用?Java DistanceOp.isWithinDistance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.vividsolutions.jts.operation.distance.DistanceOp
的用法示例。
在下文中一共展示了DistanceOp.isWithinDistance方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: isWithinDistance
import com.vividsolutions.jts.operation.distance.DistanceOp; //导入方法依赖的package包/类
/**
* Tests whether the distance from this <code>Geometry</code>
* to another is less than or equal to a specified value.
*
* @param geom the Geometry to check the distance to
* @param distance the distance value to compare
* @return <code>true</code> if the geometries are less than <code>distance</code> apart.
*/
public boolean isWithinDistance(Geometry geom, double distance) {
double envDist = this.getEnvelopeInternal().distance(geom.getEnvelopeInternal());
if (envDist > distance) {
return false;
}
return DistanceOp.isWithinDistance(this, geom, distance);
/*
double geomDist = this.distance(geom);
if (geomDist > distance)
return false;
return true;
*/
}
示例2: isWithinDistance
import com.vividsolutions.jts.operation.distance.DistanceOp; //导入方法依赖的package包/类
/**
* Tests whether the distance from this <code>Geometry</code>
* to another is less than or equal to a specified value.
*
* @param geom the Geometry to check the distance to
* @param distance the distance value to compare
* @return <code>true</code> if the geometries are less than <code>distance</code> apart.
*/
public boolean isWithinDistance(Geometry geom, double distance) {
double envDist = getEnvelopeInternal().distance(geom.getEnvelopeInternal());
if (envDist > distance)
return false;
return DistanceOp.isWithinDistance(this, geom, distance);
/*
double geomDist = this.distance(geom);
if (geomDist > distance)
return false;
return true;
*/
}
示例3: isWithinDistance
import com.vividsolutions.jts.operation.distance.DistanceOp; //导入方法依赖的package包/类
/**
* Tests whether the distance from this <code>Geometry</code>
* to another is less than or equal to a specified value.
*
* @param geom the Geometry to check the distance to
* @param distance the distance value to compare
* @return <code>true</code> if the geometries are less than <code>distance</code> apart.
*/
public boolean isWithinDistance(Geometry geom, double distance)
{
double envDist = getEnvelopeInternal().distance(geom.getEnvelopeInternal());
if (envDist > distance)
return false;
return DistanceOp.isWithinDistance(this, geom, distance);
/*
double geomDist = this.distance(geom);
if (geomDist > distance)
return false;
return true;
*/
}