当前位置: 首页>>代码示例>>Java>>正文


Java DistanceOp.isWithinDistance方法代码示例

本文整理汇总了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;
*/
}
 
开发者ID:gegy1000,项目名称:Earth,代码行数:22,代码来源:Geometry.java

示例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;
*/
}
 
开发者ID:Semantive,项目名称:jts,代码行数:21,代码来源:Geometry.java

示例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;
  */
}
 
开发者ID:GitHubDroid,项目名称:geodroid_master_update,代码行数:22,代码来源:Geometry.java


注:本文中的com.vividsolutions.jts.operation.distance.DistanceOp.isWithinDistance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。