Package org.apache.sis.distance

Examples of org.apache.sis.distance.LatLonPointRadius


   * @return a list of QuadTreeData that are within the given radius from the
   *         point
   */
  public List<QuadTreeData> queryByPointRadius(final DirectPosition2D point,
      final double radiusKM) {
    LatLonPointRadius pr = new LatLonPointRadius(point, radiusKM);
    return queryByPointRadius(point, radiusKM, this.root,
        new Rectangle2D.Double(EARTH_MIN_X, EARTH_MIN_Y, EARTH_MAX_X,
            EARTH_MAX_Y), pr.getRectangularRegionApproximation(360));
  }
View Full Code Here

TOP

Related Classes of org.apache.sis.distance.LatLonPointRadius

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.