WKT几种对象格式
POINT(0 0) ——点
LINESTRING(0 0,1 1,1 2) ——线
POLYGON((0 0,4 0,4 4,0 4,0 0),(1 1, 2 1, 2 2, 1 2,1 1)) ——面
MULTIPOINT(0 0,1 2) ——多点
MULTILINESTRING((0 0,1 1,1 2),(2 3,3 2,5 4)) ——多线
MULTIPOLYGON(((0 0,4 0,4 4,0 4,0 0),(1 1,2 1,2 2,1 2,1 1)), ((-1 -1,-1 -2,-2 -2,-2 -1,-1 -1))) ——多面
GEOMETRYCOLLECTION(POINT(2 3),LINESTRING((2 3,3 4))) ——几何集合
arcgis geometry类型总结
Point
Polyline:new Polyline({ hasZ: false, hasM: true, paths: paths, spatialReference: { wkid: 4326 } })
Polygon:new Polygon({ hasZ: true, hasM: true, rings: rings, spatialReference: { wkid: 4326 } })
MultiPoint
Circle:new Circle({ center: [ -113, 36 ], geodesic: true, numberOfPoints: 100, radius: 100, radiusUnit: "kilometers" });
GIS对象格式与ArcGISGeometry类型解析
本文介绍了地理信息系统(GIS)中常见的WKT对象格式,包括点、线、面、多点、多线、多面及几何集合,并概述了ArcGIS API中的Point、Polyline、Polygon、MultiPoint、Circle等几何对象的创建方式及其属性。内容涉及GIS数据结构与空间数据表达。
4449

被折叠的 条评论
为什么被折叠?



