Examples of LatLonPointRadius


Examples of org.apache.sis.core.LatLonPointRadius

   * @return a list of QuadTreeData that are within the given radius from the
   *         point
   */
  public List<QuadTreeData> queryByPointRadius(final LatLon 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

Examples of org.apache.sis.core.LatLonPointRadius

   * @return a list of QuadTreeData that are within the given radius from the
   *         point
   */
  public List<QuadTreeData> queryByPointRadius(final LatLon 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

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
Copyright © 2018 www.massapi.com. 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.