|
| 1 | +/* |
| 2 | + * DISCLAIMER |
| 3 | + * |
| 4 | + * Copyright 2016 ArangoDB GmbH, Cologne, Germany |
| 5 | + * |
| 6 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + * you may not use this file except in compliance with the License. |
| 8 | + * You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, software |
| 13 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + * See the License for the specific language governing permissions and |
| 16 | + * limitations under the License. |
| 17 | + * |
| 18 | + * Copyright holder is ArangoDB GmbH, Cologne, Germany |
| 19 | + */ |
| 20 | + |
| 21 | +package com.arangodb.entity.arangosearch.analyzer; |
| 22 | + |
| 23 | + |
| 24 | +import java.util.Objects; |
| 25 | + |
| 26 | +/** |
| 27 | + * @author Michele Rastelli |
| 28 | + */ |
| 29 | +public final class GeoS2AnalyzerProperties { |
| 30 | + |
| 31 | + private GeoS2AnalyzerType type; |
| 32 | + private GeoAnalyzerOptions options; |
| 33 | + private GeoS2Format format; |
| 34 | + |
| 35 | + public GeoS2AnalyzerType getType() { |
| 36 | + return type; |
| 37 | + } |
| 38 | + |
| 39 | + public void setType(GeoS2AnalyzerType type) { |
| 40 | + this.type = type; |
| 41 | + } |
| 42 | + |
| 43 | + /** |
| 44 | + * @return Options for fine-tuning geo queries {@link GeoS2AnalyzerProperties}. These options should generally |
| 45 | + * remain unchanged. |
| 46 | + */ |
| 47 | + public GeoAnalyzerOptions getOptions() { |
| 48 | + return options; |
| 49 | + } |
| 50 | + |
| 51 | + public void setOptions(GeoAnalyzerOptions options) { |
| 52 | + this.options = options; |
| 53 | + } |
| 54 | + |
| 55 | + /** |
| 56 | + * @return The internal binary representation to use for storing the geo-spatial data in an index. |
| 57 | + */ |
| 58 | + public GeoS2Format getFormat() { |
| 59 | + return format; |
| 60 | + } |
| 61 | + |
| 62 | + public void setFormat(GeoS2Format format) { |
| 63 | + this.format = format; |
| 64 | + } |
| 65 | + |
| 66 | + @Override |
| 67 | + public boolean equals(Object o) { |
| 68 | + if (this == o) return true; |
| 69 | + if (o == null || getClass() != o.getClass()) return false; |
| 70 | + GeoS2AnalyzerProperties that = (GeoS2AnalyzerProperties) o; |
| 71 | + return type == that.type && Objects.equals(options, that.options) && format == that.format; |
| 72 | + } |
| 73 | + |
| 74 | + @Override |
| 75 | + public int hashCode() { |
| 76 | + return Objects.hash(type, options, format); |
| 77 | + } |
| 78 | + |
| 79 | + public enum GeoS2AnalyzerType { |
| 80 | + |
| 81 | + /** |
| 82 | + * (default): index all GeoJSON geometry types (Point, Polygon etc.) |
| 83 | + */ |
| 84 | + shape, |
| 85 | + |
| 86 | + /** |
| 87 | + * compute and only index the centroid of the input geometry |
| 88 | + */ |
| 89 | + centroid, |
| 90 | + |
| 91 | + /** |
| 92 | + * only index GeoJSON objects of type Point, ignore all other geometry types |
| 93 | + */ |
| 94 | + point |
| 95 | + } |
| 96 | + |
| 97 | + public enum GeoS2Format { |
| 98 | + /** |
| 99 | + * Store each latitude and longitude value as an 8-byte floating-point value (16 bytes per coordinate pair). |
| 100 | + * This format preserves numeric values exactly and is more compact than the VelocyPack format used by |
| 101 | + * {@link GeoJSONAnalyzer}. (default) |
| 102 | + */ |
| 103 | + latLngDouble, |
| 104 | + |
| 105 | + /** |
| 106 | + * Store each latitude and longitude value as an 4-byte integer value (8 bytes per coordinate pair). This is the |
| 107 | + * most compact format but the precision is limited to approximately 1 to 10 centimeters. |
| 108 | + */ |
| 109 | + latLngInt, |
| 110 | + |
| 111 | + /** |
| 112 | + * Store each longitude-latitude pair in the native format of Google S2 which is used for geo-spatial |
| 113 | + * calculations (24 bytes per coordinate pair). This is not a particular compact format but it reduces the |
| 114 | + * number of computations necessary when you execute geo-spatial queries. This format preserves numeric values |
| 115 | + * exactly. |
| 116 | + */ |
| 117 | + s2Point |
| 118 | + } |
| 119 | +} |
0 commit comments