/* SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. * * Licensed to Elasticsearch B.V. under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch B.V. 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. */ namespace OpenSearch.Client { public enum GeoTilePrecision { /// /// Whole world /// Precision0 = 0, Precision1 = 1, /// /// Subcontinental area /// Precision2 = 2, /// /// Largest Country /// Precision3 = 3, Precision4 = 4, /// /// Large African Country /// Precision5 = 5, /// /// Large European Country /// Precision6 = 6, /// /// Small Country / US State /// Precision7 = 7, Precision8 = 8, /// /// Wide Area / Large Metropolitan Area /// Precision9 = 9, /// /// Metropolitan Area /// Precision10 = 10, /// /// City /// Precision11 = 11, /// /// City / Town / District /// Precision12 = 12, /// /// Village / Suburb /// Precision13 = 13, Precision14 = 14, /// /// Small Road /// Precision15 = 15, /// /// Street /// Precision16 = 16, /// /// Block / Park / Addresses /// Precision17 = 17, /// /// Some Buildings / Trees /// Precision18 = 18, /// /// Local highway / Crossing /// Precision19 = 19, Precision20 = 20, Precision21 = 21, Precision22 = 22, Precision23 = 23, Precision24 = 24, Precision25 = 25, Precision26 = 26, Precision27 = 27, Precision28 = 28, /// /// Produces cells that cover less than a 10cm by 10cm of land and so high-precision /// requests can be very costly in terms of RAM and result sizes. /// Precision29 = 29 } }