Java tutorial
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.druid.collections.spatial; import com.google.common.base.Preconditions; /** */ public class RTreeUtils { public static double getEnclosingArea(Node a, Node b) { Preconditions.checkArgument(a.getNumDims() == b.getNumDims()); double[] minCoords = new double[a.getNumDims()]; double[] maxCoords = new double[a.getNumDims()]; for (int i = 0; i < minCoords.length; i++) { minCoords[i] = Math.min(a.getMinCoordinates()[i], b.getMinCoordinates()[i]); maxCoords[i] = Math.max(a.getMaxCoordinates()[i], b.getMaxCoordinates()[i]); } double area = 1.0; for (int i = 0; i < minCoords.length; i++) { area *= (maxCoords[i] - minCoords[i]); } return area; } public static double getExpansionCost(Node node, Point point) { Preconditions.checkArgument(node.getNumDims() == point.getNumDims()); if (node.contains(point.getCoords())) { return 0; } double expanded = 1.0; for (int i = 0; i < node.getNumDims(); i++) { double min = Math.min(point.getCoords()[i], node.getMinCoordinates()[i]); double max = Math.max(point.getCoords()[i], node.getMinCoordinates()[i]); expanded *= (max - min); } return (expanded - node.getArea()); } public static void enclose(Node[] nodes) { for (Node node : nodes) { node.enclose(); } } }