全部產品
Search
文件中心

:地理位置查詢

更新時間:Jul 19, 2024

地理位置查詢包括地理距離查詢(GeoDistanceQuery)、地理長方形範圍查詢(GeoBoundingBoxQuery)和地理多邊形範圍查詢(GeoPolygonQuery)三種方式。

前提條件

地理距離查詢(GeoDistanceQuery)

GeoDistanceQuery根據一個中心點和距離條件查詢表中的資料,當一個地理位置點到指定的中心點的距離不超過指定的值時,滿足查詢條件。

  • 參數

    參數

    說明

    FieldName

    列名,類型為Geopoint。

    CenterPoint

    中心地理座標點,是一個經緯度值。

    格式為“緯度,經度”,緯度在前,經度在後,且緯度範圍為-90~+90,經度範圍-180~+180。例如“35.8,-45.91”。

    DistanceInMeter

    距離中心點的距離,類型為Double。單位為米。

    Query

    多元索引的查詢語句。設定查詢類型為GeoDistanceQuery。

    TableName

    資料表名稱。

    IndexName

    多元索引名稱。

    ColumnsToGet

    是否返回所有列。包含ReturnAll和Columns以及ReturnAllFromIndex設定。

    ReturnAll預設為false,表示不返回所有列。此時可以通過如下任一設定返回所需列。如果未設定Columns和ReturnAllFromIndex,則只返回主鍵列。

    • 設定Columns指定返回的列。

    • 設定ReturnAllFromIndex為true返回多元索引中的所有列。

    當設定ReturnAll為true時,表示返回所有列。

  • 樣本

    以下樣本用於查詢表中geo_type_col列的值距離中心點不超過一定距離的資料。

    /// <summary> 
    ///  查詢表中geo_type_col列的值距離中心點不超過一定距離的資料。
    /// </summary>
    /// <param name="client"></param>
    public static void GeoDistanceQuery(OTSClient client)
    {
        SearchQuery searchQuery = new SearchQuery();
        GeoDistanceQuery geoDistanceQuery = new GeoDistanceQuery();  //設定查詢類型為GeoDistanceQuery。
        geoDistanceQuery.FieldName = Geo_type_col;
        geoDistanceQuery.CenterPoint = "10,11"; //設定中心點。
        geoDistanceQuery.DistanceInMeter = 10000; //設定條件為到中心點的距離不超過10000米。
        searchQuery.Query = geoDistanceQuery;
    
        SearchRequest searchRequest = new SearchRequest(TableName, IndexName, searchQuery);
    
        ColumnsToGet columnsToGet = new ColumnsToGet();
        columnsToGet.Columns = new List<string>() { Geo_type_col };  //設定返回Col_GeoPoint列。
        searchRequest.ColumnsToGet = columnsToGet;
    
        SearchResponse response = client.Search(searchRequest);
        Console.WriteLine(response.TotalCount);
    }
                

地理長方形範圍查詢(GeoBoundingBoxQuery)

GeoBoundingBoxQuery根據一個長方形範圍的地理位置邊界條件查詢表中的資料,當一個地理位置點落在給出的長方形範圍內時滿足查詢條件。

  • 參數

    參數

    說明

    FieldName

    列名,類型為Geopoint。

    TopLeft

    長方形框的左上方的座標。

    BottomRight

    長方形框的右下角的座標,通過左上方和右下角就可以確定一個唯一的長方形。

    格式為“緯度,經度”,緯度在前,經度在後,且緯度範圍為-90~+90,經度範圍-180~+180。例如“35.8,-45.91”。

    Query

    多元索引的查詢語句。設定查詢類型為GeoBoundingBoxQuery。

    TableName

    資料表名稱。

    IndexName

    多元索引名稱。

    ColumnsToGet

    是否返回所有列。包含ReturnAll和Columns以及ReturnAllFromIndex設定。

    ReturnAll預設為false,表示不返回所有列。此時可以通過如下任一設定返回所需列。如果未設定Columns和ReturnAllFromIndex,則只返回主鍵列。

    • 設定Columns指定返回的列。

    • 設定ReturnAllFromIndex為true返回多元索引中的所有列。

    當設定ReturnAll為true時,表示返回所有列。

  • 樣本

    以下樣本用於查詢表中geo_type_col列的值在左上方為"10,0", 右下角為"0,10"的長方形範圍內的資料。

    /// <summary>
    /// geo_type_col是Geopoint類型,查詢表中geo_type_col列的值在左上方為"10,0", 右下角為"0,10"的長方形範圍內的資料。
    /// </summary>
    /// <param name="client"></param>
    public static void GeoBoundingBoxQuery(OTSClient client)
    {
        SearchQuery searchQuery = new SearchQuery();
        GeoBoundingBoxQuery geoBoundingBoxQuery = new GeoBoundingBoxQuery(); //設定查詢類型為GeoBoundingBoxQuery。
        geoBoundingBoxQuery.FieldName = Geo_type_col; //設定列名。
        geoBoundingBoxQuery.TopLeft = "10,0"; //設定長方形左上方。
        geoBoundingBoxQuery.BottomRight = "0,10"; //設定長方形右下角。
        searchQuery.Query = geoBoundingBoxQuery;
    
        SearchRequest searchRequest = new SearchRequest(TableName, IndexName, searchQuery);
    
        var columnsToGet = new ColumnsToGet();
        columnsToGet.Columns = new List<string> { Geo_type_col };  //設定返回Col_GeoPoint列。
        searchRequest.ColumnsToGet = columnsToGet;
    
        SearchResponse response = client.Search(searchRequest);
        Console.WriteLine(response.TotalCount);
    }

地理多邊形範圍查詢(GeoPolygonQuery)

GeoPolygonQuery根據一個多邊形範圍條件查詢表中的資料,當一個地理位置點落在指定的多邊形範圍內時滿足查詢條件。

  • 參數

    參數

    說明

    FieldName

    列名,類型為Geopoint。

    Points

    組成多邊形的距離座標點。

    格式為“緯度,經度”,緯度在前,經度在後,且緯度範圍為-90~+90,經度範圍-180~+180。例如“35.8,-45.91”。

    Query

    多元索引的查詢語句。設定查詢類型為GeoPolygonQuery。

    TableName

    資料表名稱。

    IndexName

    多元索引名稱。

    ColumnsToGet

    是否返回所有列。包含ReturnAll和Columns以及ReturnAllFromIndex設定。

    ReturnAll預設為false,表示不返回所有列。此時可以通過如下任一設定返回所需列。如果未設定Columns和ReturnAllFromIndex,則只返回主鍵列。

    • 設定Columns指定返回的列。

    • 設定ReturnAllFromIndex為true返回多元索引中的所有列。

    當設定ReturnAll為true時,表示返回所有列。

  • 樣本

    以下樣本用於查詢表中geo_type_col列的值在一個給定多邊形範圍內的資料。

    /// <summary>
    /// 查詢表中geo_type_col列的值在一個給定多邊形範圍內的資料。
    /// </summary>
    /// <param name="client"></param>
    public static void GeoPolygonQuery(OTSClient client)
    {
        SearchQuery searchQuery = new SearchQuery();
        GeoPolygonQuery geoPolygonQuery = new GeoPolygonQuery();  //設定查詢類型為GeoPolygonQuery。
        geoPolygonQuery.FieldName = Geo_type_col;
        geoPolygonQuery.Points = new List<string>() { "0,0", "10,0", "10,10" }; //設定多邊形的頂點。
        searchQuery.Query = geoPolygonQuery;
    
        SearchRequest searchRequest = new SearchRequest(TableName, IndexName, searchQuery);
    
        ColumnsToGet columnsToGet = new ColumnsToGet();
        columnsToGet.Columns = new List<string>() { Geo_type_col };  //設定返回Col_GeoPoint列。
        searchRequest.ColumnsToGet = columnsToGet;
    
        SearchResponse response = client.Search(searchRequest);
        Console.WriteLine(response.TotalCount);
    }
                

常見問題

相關文檔