地理位置Graph
地理位置(GEOGRAPHY)是由经纬度构成的表示地理空间信息的数据类型。NebulaGraph当前支持Graph中的部分核心geo解析、构造、格式设置、转换、谓词和度量等函数。
GEOGRAPHYGraph
GEOGRAPHY的基本类型是点,由经纬度确定一个点,例如"POINT(3 8)"
表示经度为3°
,纬度为8°
。多个点可以构成线段或多边形。
类型 | 示例 | 说明 |
---|---|---|
Point | "POINT(3 8)" |
点类型 |
LineString | "LINESTRING(3 8, 4.7 73.23)" |
线段类型 |
Polygon | "POLYGON((0 1, 1 2, 2 3, 0 1))" |
多边形类型 |
示例Graph
geo相关函数请参见Graph。
//创建Tag,允许存储任意形状地理位置数据类型。
nebula> CREATE TAG any_shape(geo geography);
//创建Tag,只允许存储点形状地理位置数据类型。
nebula> CREATE TAG only_point(geo geography(point));
//创建Tag,只允许存储线段形状地理位置数据类型。
nebula> CREATE TAG only_linestring(geo geography(linestring));
//创建Tag,只允许存储多边形形状地理位置数据类型。
nebula> CREATE TAG only_polygon(geo geography(polygon));
//创建Edge type,允许存储任意形状地理位置数据类型。
nebula> CREATE EDGE any_shape_edge(geo geography);
//创建存储多边形地理位置的点。
nebula> INSERT VERTEX any_shape(geo) VALUES "103":(ST_GeogFromText("POLYGON((0 1, 1 2, 2 3, 0 1))"));
//创建存储多边形地理位置的边。
nebula> INSERT EDGE any_shape_edge(geo) VALUES "201"->"302":(ST_GeogFromText("POLYGON((0 1, 1 2, 2 3, 0 1))"));
//查询点103的属性geo。
nebula> FETCH PROP ON any_shape "103" YIELD ST_ASText(any_shape.geo);
+----------+---------------------------------+
| VertexID | ST_ASText(any_shape.geo) |
+----------+---------------------------------+
| "103" | "POLYGON((0 1, 1 2, 2 3, 0 1))" |
+----------+---------------------------------+
//查询边201->302的属性geo。
nebula> FETCH PROP ON any_shape_edge "201"->"302" YIELD ST_ASText(any_shape_edge.geo);
+---------------------+---------------------+----------------------+---------------------------------+
| any_shape_edge._src | any_shape_edge._dst | any_shape_edge._rank | ST_ASText(any_shape_edge.geo) |
+---------------------+---------------------+----------------------+---------------------------------+
| "201" | "302" | 0 | "POLYGON((0 1, 1 2, 2 3, 0 1))" |
+---------------------+---------------------+----------------------+---------------------------------+
//为geo属性创建索引并使用LOOKUP查询。
nebula> CREATE TAG INDEX any_shape_geo_index ON any_shape(geo);
nebula> REBUILD TAG INDEX any_shape_geo_index;
nebula> LOOKUP ON any_shape YIELD ST_ASText(any_shape.geo);
+----------+-------------------------------------------------+
| VertexID | ST_ASText(any_shape.geo) |
+----------+-------------------------------------------------+
| "103" | "POLYGON((0 1, 1 2, 2 3, 0 1))" |
+----------+-------------------------------------------------+
最后更新: October 22, 2021