com.orientechnologies.spatial.functions.OSTDistanceSphereFunction Maven / Gradle / Ivy
Show all versions of orientdb-lucene Show documentation
/**
* Copyright 2010-2016 OrientDB LTD (http://orientdb.com)
*
* Licensed 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.
*
*
For more information: http://www.orientdb.com
*/
package com.orientechnologies.spatial.functions;
import com.orientechnologies.orient.core.command.OCommandContext;
import com.orientechnologies.orient.core.db.record.OIdentifiable;
import com.orientechnologies.orient.core.sql.parser.OBinaryCompareOperator;
import com.orientechnologies.orient.core.sql.parser.OExpression;
import com.orientechnologies.orient.core.sql.parser.OFromClause;
import com.orientechnologies.spatial.shape.OShapeFactory;
import com.orientechnologies.spatial.strategy.SpatialQueryBuilderDistanceSphere;
import java.util.Map;
import org.locationtech.spatial4j.distance.DistanceUtils;
import org.locationtech.spatial4j.shape.Shape;
/** Created by Enrico Risa on 25/09/15. */
public class OSTDistanceSphereFunction extends OSpatialFunctionAbstractIndexable {
public static final String NAME = "st_distance_sphere";
private OShapeFactory factory = OShapeFactory.INSTANCE;
public OSTDistanceSphereFunction() {
super(NAME, 2, 2);
}
@Override
public Object execute(
Object iThis,
OIdentifiable iCurrentRecord,
Object iCurrentResult,
Object[] iParams,
OCommandContext iContext) {
if (containsNull(iParams)) {
return null;
}
Shape shape = toShape(iParams[0]);
Shape shape1 = toShape(iParams[1]);
if (shape == null || shape1 == null) {
return null;
}
double distance =
factory.context().getDistCalc().distance(shape.getCenter(), shape1.getCenter());
final double docDistInKM =
DistanceUtils.degrees2Dist(distance, DistanceUtils.EARTH_EQUATORIAL_RADIUS_KM);
return docDistInKM * 1000;
}
@Override
public String getSyntax() {
return null;
}
@Override
protected String operator() {
return SpatialQueryBuilderDistanceSphere.NAME;
}
@Override
public Iterable searchFromTarget(
OFromClause target,
OBinaryCompareOperator operator,
Object rightValue,
OCommandContext ctx,
OExpression... args) {
return results(target, args, ctx, rightValue);
}
@Override
public long estimate(
OFromClause target,
OBinaryCompareOperator operator,
Object rightValue,
OCommandContext ctx,
OExpression... args) {
if (rightValue == null || !isValidBinaryOperator(operator)) {
return -1;
}
return super.estimate(target, operator, rightValue, ctx, args);
}
@Override
protected void onAfterParsing(
Map params, OExpression[] args, OCommandContext ctx, Object rightValue) {
Number parsedNumber = (Number) rightValue;
params.put("distance", parsedNumber.doubleValue());
}
}